diff options
author | rathnor <rathnor> | 2003-07-19 11:55:49 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-07-19 11:55:49 (GMT) |
commit | 2f1f364fa2d7c72b93d4dbcde321abace5e2109d (patch) | |
tree | 0cf9bd8b1b08922dbc09c19310d9bfb76ea64c3a /src/Window.cc | |
parent | 939e750684971412eda6245ef012435c86ee2d47 (diff) | |
download | fluxbox-2f1f364fa2d7c72b93d4dbcde321abace5e2109d.zip fluxbox-2f1f364fa2d7c72b93d4dbcde321abace5e2109d.tar.bz2 |
fix up xinerama for heads of toolbar and slit
Diffstat (limited to 'src/Window.cc')
-rw-r--r-- | src/Window.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Window.cc b/src/Window.cc index a1be00e..ca6ab99 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Window.cc,v 1.204 2003/07/17 17:56:28 rathnor Exp $ | 25 | // $Id: Window.cc,v 1.205 2003/07/19 11:55:49 rathnor Exp $ |
26 | 26 | ||
27 | #include "Window.hh" | 27 | #include "Window.hh" |
28 | 28 | ||
@@ -698,7 +698,8 @@ bool FluxboxWindow::detachClient(WinClient &client) { | |||
698 | 698 | ||
699 | removeClient(client); | 699 | removeClient(client); |
700 | 700 | ||
701 | client.m_win = screen().createWindow(client); | 701 | // m_client must be valid as there should be at least one other window |
702 | // otherwise this wouldn't be here (refer numClients() <= 1 return) | ||
702 | m_client->raise(); | 703 | m_client->raise(); |
703 | setInputFocus(); | 704 | setInputFocus(); |
704 | return true; | 705 | return true; |