aboutsummaryrefslogtreecommitdiff
path: root/deskutils/kdepim4/files/patch-kdegantt_KDGanttView.cpp
blob: 4b53f326f2fb641557c8e4bbebb9809bf8426b28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--- kdgantt/KDGanttView.cpp.orig	Thu May  4 09:19:43 2006
+++ kdgantt/KDGanttView.cpp	Tue May  2 10:07:59 2006
@@ -323,7 +323,12 @@
   bool block = myTimeTable->blockUpdating();
   myTimeTable->setBlockUpdating( false );
   myTimeTable->updateMyContent();
-  qApp->processEvents();
+  /* The below causes recursive calls to various size updating methods, which
+   * cause QCanvas to hide and show items like mad, which is very slow. If
+   * there is a legitimate gui updating issue here somewhere, it will need
+   * to be solved differently.
+   */
+  //qApp->processEvents();
   int hintHeight = myTimeHeader->height();
   int legendHeight = 0;
   if ( showLegendButton() )