Summary: | kontacts splash screen covers the kwallet password dialog | ||
---|---|---|---|
Product: | [Applications] kontact | Reporter: | Ferdinand Gassauer <gassauer> |
Component: | general | Assignee: | kdepim bugs <kdepim-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | l.lunak |
Priority: | NOR | ||
Version: | 0.1 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Ferdinand Gassauer
2004-11-24 08:29:52 UTC
btw the password dialog pops up, because of kmail Probably rather kwin problem. CVS commit by lunakl: Make dialogs an exception from keeping splashscreens on top of every other window from the app (#93832). IMHO the real problem is in apps showing modal dialogs while they still have a splascreen visible, but I've seen this already enough times. CCBUG: 93832 M +3 -0 layers.cpp 2.34 --- kdebase/kwin/layers.cpp #2.33:2.34 @@ -608,4 +608,7 @@ bool Workspace::keepTransientAbove( cons if( mainwindow->isTopMenu() && transient->groupTransient()) return false; + // #93832 - don't keep splashscreens above dialogs + if( transient->isSplash() && mainwindow->isDialog()) + return false; // This is rather a hack for #76026. Don't keep non-modal dialogs above // the mainwindow, but only if they're group transient (since only such dialogs Also backported for 3.3.2. Fixed by Lubos' patch |