| Summary: | don't display digikam splash screen on sessin restore | ||
|---|---|---|---|
| Product: | [Applications] digikam | Reporter: | Achim Bohnet <ach> |
| Component: | ProgressManager-Splashscreen | Assignee: | Digikam Developers <digikam-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | wishlist | CC: | caulier.gilles |
| Priority: | NOR | ||
| Version First Reported In: | 0.7.0 | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | 7.6.0 | |
| Sentry Crash Report: | |||
|
Description
Achim Bohnet
2005-01-31 23:29:28 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();
|