-rw-r--r-- | core/launcher/launcherview.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/launcher/launcherview.cpp b/core/launcher/launcherview.cpp index 9f86136..dbcb0d7 100644 --- a/core/launcher/launcherview.cpp +++ b/core/launcher/launcherview.cpp @@ -96,25 +96,27 @@ public: void setBusy(bool on) { QIconViewItem *c = on ? currentItem() : 0; if ( bsy != c ) { if ( bsy ) bsy-> repaint ( ); bsy = c; if ( bsy ) { busytimer = startTimer ( 150 ); busystate = 50; - startTimer ( 0 ); + // not sure what this startTimer is for, maybe i am just to tired. But + // currently that causes 100% cpuload on app launch + //startTimer ( 0 ); } else killTimer ( busytimer ); } } virtual void timerEvent ( QTimerEvent *te ) { if ( !te || ( te-> timerId ( ) == busytimer )) { if ( bsy ) { QPixmap *src = bsy-> QIconViewItem::pixmap(); QImage img = src->convertToImage(); |