| Summary: | Send to desktop option forgets child-dialogs | ||
|---|---|---|---|
| Product: | [Plasma] kwin | Reporter: | Thomas Zander <zander> |
| Component: | general | Assignee: | Lubos Lunak <l.lunak> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | psychonaut |
| Priority: | HI | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Thomas Zander
2004-10-05 11:34:12 UTC
CVS commit by lunakl: Fix #90794 - make sure dialogs are sent to another virtual desktop with their mainwindow. CCMAIL: 90794-done@bugs.kde.org M +1 -1 workspace.cpp 1.487 --- kdebase/kwin/workspace.cpp #1.486:1.487 @@ -1333,5 +1333,5 @@ void Workspace::sendClientToDesktop( Cli bool was_on_desktop = c->isOnDesktop( desk ) || c->isOnAllDesktops(); c->setDesktop( desk ); - if ( c->desktop() == desk ) // no change or desktop forced + if ( c->desktop() != desk ) // no change or desktop forced return; desk = c->desktop(); // Client did range checking |