Bug 98305 - don't display digikam splash screen on sessin restore
Summary: don't display digikam splash screen on sessin restore
Status: RESOLVED FIXED
Alias: None
Product: digikam
Classification: Applications
Component: ProgressManager-Splashscreen (show other bugs)
Version: 0.7.0
Platform: unspecified Linux
: NOR wishlist
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-01-31 23:29 UTC by Achim Bohnet
Modified: 2022-02-05 12:59 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In: 7.6.0


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Achim Bohnet 2005-01-31 23:29:28 UTC
Version:           0.7 (using KDE 3.3.2,  (3.1))
Compiler:          gcc version 3.3.5 (Debian 1:3.3.5-6)
OS:                Linux (i686) release 2.6.8-2-686

during login and sessin restore digikam show it's splash screen
almost totally hidden behind the kde splash screen.  That's a bit
irretating and useless.

Please disable splash screen on session restore.

Achim
Comment 1 Joern Ahrens 2005-02-01 00:01:11 UTC
CVS commit by jahrens: 

Yep Achim, you're right.

BUG: 98305


  M +5 -3      digikamapp.cpp   1.88


--- kdeextragear-3/digikam/digikam/digikamapp.cpp  #1.87:1.88
@@ -82,9 +82,11 @@ DigikamApp::DigikamApp(bool detectCamera
     mFullScreen = false;
     mView = 0;
-    bool showSplash = m_config->readBoolEntry("Show Splash", true);
-    mSplash = 0;
     
-    if(showSplash)
+    mSplash = 0;
+    if(m_config->readBoolEntry("Show Splash", true) &&
+       !kapp->isRestored())
+    {
         mSplash = new SplashScreen();
+    }
 
     mAlbumSettings = new AlbumSettings();