diff options
author | markt <markt> | 2006-07-04 07:10:15 (GMT) |
---|---|---|
committer | markt <markt> | 2006-07-04 07:10:15 (GMT) |
commit | aa589f3bdc2044571a7181ebac3f2a3e8156aa11 (patch) | |
tree | 99bfc468d93bbf4a4753e3824a8720bf18d30093 | |
parent | 1cc6cc4b150c6be59fa7c896287ed2c292997641 (diff) | |
download | fluxbox-aa589f3bdc2044571a7181ebac3f2a3e8156aa11.zip fluxbox-aa589f3bdc2044571a7181ebac3f2a3e8156aa11.tar.bz2 |
autogrouped windows from groups file didn't raise, bug #1449608
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/Workspace.cc | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -1,6 +1,9 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 1.0rc3: | 2 | Changes for 1.0rc3: |
3 | *06/07/04: | 3 | *06/07/04: |
4 | * Auto-grouped windows using groups file didn't raise (Thanks ac2dc, bug | ||
5 | #1449608) | ||
6 | Workspace.cc | ||
4 | * New windows don't steal focus from fullscreen windows; instead, flash the | 7 | * New windows don't steal focus from fullscreen windows; instead, flash the |
5 | titlebar and iconbar button (Mark) | 8 | titlebar and iconbar button (Mark) |
6 | Window.cc | 9 | Window.cc |
diff --git a/src/Workspace.cc b/src/Workspace.cc index f00d4c7..dc9fd86 100644 --- a/src/Workspace.cc +++ b/src/Workspace.cc | |||
@@ -311,6 +311,7 @@ bool Workspace::checkGrouping(FluxboxWindow &win) { | |||
311 | cerr<<__FILE__<<"("<<__FUNCTION__<<"): window ("<<*wit<<") attaching window ("<<&win<<")"<<endl; | 311 | cerr<<__FILE__<<"("<<__FUNCTION__<<"): window ("<<*wit<<") attaching window ("<<&win<<")"<<endl; |
312 | #endif // DEBUG | 312 | #endif // DEBUG |
313 | (*wit)->attachClient(win.winClient()); | 313 | (*wit)->attachClient(win.winClient()); |
314 | (*wit)->raise(); | ||
314 | return true; // grouping done | 315 | return true; // grouping done |
315 | 316 | ||
316 | } | 317 | } |