-rw-r--r-- | core/launcher/launcher.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/core/launcher/launcher.cpp b/core/launcher/launcher.cpp index 98e7481..7887704 100644 --- a/core/launcher/launcher.cpp +++ b/core/launcher/launcher.cpp @@ -642,9 +642,10 @@ void Launcher::typeAdded( const QString& type, const QString& name, const QPixmap& pixmap, const QPixmap& ) { tabs->newView( type, pixmap, name ); ids.append( type ); - tb->refreshStartMenu(); + /* this will be called in applicationScanningProgress with value 100! */ +// tb->refreshStartMenu(); static bool first = TRUE; if ( first ) { first = FALSE; @@ -659,9 +660,10 @@ void Launcher::typeRemoved( const QString& type ) { tabs->view( type )->removeAllItems(); tabs->deleteView( type ); ids.remove( type ); - tb->refreshStartMenu(); + /* this will be called in applicationScanningProgress with value 100! */ +// tb->refreshStartMenu(); } void Launcher::applicationAdded( const QString& type, const AppLnk& app ) { @@ -767,8 +769,9 @@ void Launcher::documentScanningProgress( int percent ) tabs->docView()->updateTools(); tabs->docView()->setSortEnabled( TRUE ); tabs->docView()->setUpdatesEnabled( TRUE ); tabs->setLoadingWidgetEnabled( FALSE ); + tb->refreshStartMenu(); break; } default: tabs->setLoadingProgress( percent ); |