Bug 75110

Summary: splash screen is kept on top during desktop changes
Product: [Applications] kdevelop Reporter: Gioele Barabucci <dev>
Component: generalAssignee: KDevelop Developers <kdevelop-devel>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: 3.0.0   
Target Milestone: ---   
Platform: unspecified   
OS: Linux   
Latest Commit: Version Fixed In:

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 );