Bug 75110 - splash screen is kept on top during desktop changes
Summary: splash screen is kept on top during desktop changes
Status: RESOLVED FIXED
Alias: None
Product: kdevelop
Classification: Applications
Component: general (show other bugs)
Version: 3.0.0
Platform: unspecified Linux
: NOR normal
Target Milestone: ---
Assignee: KDevelop Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-02-13 00:30 UTC by Gioele Barabucci
Modified: 2004-02-21 05:33 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Gioele Barabucci 2004-02-13 00:30:43 UTC
Version:           3.0.0 (using KDE 3.2.0, Gentoo)
Compiler:          gcc version 3.2.3 20030422 (Gentoo Linux 1.4 3.2.3-r4, propolice)
OS:          Linux (ppc) release 2.4.22-ben2-r4

When you start kdevelop and change desktop, the splash screen (which takes a long time to disappear) is still on top of all the windows.

Splashscreens should not be "sticky".
Comment 1 Jens Dagerbo 2004-02-21 05:33:13 UTC
CVS commit by dagerbo: 

Don't show splashscreen on all desktops.
(Yes, instead we get a shortlived entry in the 
taskbar for the splash. Preferable, IMHO.)

CCMAIL: 75110-done@bugs.kde.org


  M +1 -1      splashscreen.cpp   1.18


--- kdevelop/src/splashscreen.cpp  #1.17:1.18
@@ -21,5 +21,5 @@ SplashScreen::SplashScreen()
 {
   m_splash = new QWidget( 0,
-    "splash", WStyle_NoBorder | WStyle_Customize | WStyle_StaysOnTop | WX11BypassWM );
+    "splash", WStyle_NoBorder | WStyle_Customize | WStyle_StaysOnTop /*| WX11BypassWM */);
 
   m_splash->installEventFilter( this );