diff options
author | markt <markt> | 2007-06-30 04:15:55 (GMT) |
---|---|---|
committer | markt <markt> | 2007-06-30 04:15:55 (GMT) |
commit | 8e75ace959d2a5d56d30cb6a06ce895f397c1f19 (patch) | |
tree | 1558c8dbf46be7f1006dd52e1c093ad1ab752911 /src/Workspace.cc | |
parent | 8fbeaf279e930b2d9c236cba29b923609b910f5c (diff) | |
download | fluxbox-8e75ace959d2a5d56d30cb6a06ce895f397c1f19.zip fluxbox-8e75ace959d2a5d56d30cb6a06ce895f397c1f19.tar.bz2 |
fixed the groups file for the last time
Diffstat (limited to 'src/Workspace.cc')
-rw-r--r-- | src/Workspace.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Workspace.cc b/src/Workspace.cc index fd81e5e..888c20a 100644 --- a/src/Workspace.cc +++ b/src/Workspace.cc | |||
@@ -326,8 +326,10 @@ bool Workspace::checkGrouping(FluxboxWindow &win) { | |||
326 | #ifdef DEBUG | 326 | #ifdef DEBUG |
327 | cerr<<__FILE__<<"("<<__FUNCTION__<<"): window ("<<*wit<<") attaching window ("<<&win<<")"<<endl; | 327 | cerr<<__FILE__<<"("<<__FUNCTION__<<"): window ("<<*wit<<") attaching window ("<<&win<<")"<<endl; |
328 | #endif // DEBUG | 328 | #endif // DEBUG |
329 | (*wit)->attachClient(win.winClient()); | 329 | WinClient &client = win.winClient(); |
330 | (*wit)->raise(); | 330 | (*wit)->attachClient(client); |
331 | if (client.screen().focusControl().focusNew()) | ||
332 | (*wit)->setCurrentClient(client); | ||
331 | return true; // grouping done | 333 | return true; // grouping done |
332 | 334 | ||
333 | } | 335 | } |