From d1aa72f683fb264cca6936a8119d0abe9b310325 Mon Sep 17 00:00:00 2001 From: zautrix Date: Tue, 01 Feb 2005 12:06:53 +0000 Subject: fixes --- (limited to 'korganizer/kodaymatrix.cpp') diff --git a/korganizer/kodaymatrix.cpp b/korganizer/kodaymatrix.cpp index dd83d48..989f758 100644 --- a/korganizer/kodaymatrix.cpp +++ b/korganizer/kodaymatrix.cpp @@ -340,7 +340,7 @@ void KODayMatrix::mouseReleaseEvent (QMouseEvent* e) mSelEnd = mSelInit; if (tmp != mSelStart) { mSelStart = tmp; - repaint(); + repaint(false); } } else { mSelStart = mSelInit; @@ -348,7 +348,7 @@ void KODayMatrix::mouseReleaseEvent (QMouseEvent* e) //repaint only if selection has changed if (tmp != mSelEnd) { mSelEnd = tmp; - repaint(); + repaint(false); } } @@ -371,7 +371,7 @@ void KODayMatrix::mouseMoveEvent (QMouseEvent* e) mSelEnd = mSelInit; if (tmp != mSelStart) { mSelStart = tmp; - repaint(); + repaint(false); } } else { mSelStart = mSelInit; @@ -379,7 +379,7 @@ void KODayMatrix::mouseMoveEvent (QMouseEvent* e) //repaint only if selection has changed if (tmp != mSelEnd) { mSelEnd = tmp; - repaint(); + repaint(false); } } } -- cgit v0.9.0.2