autogrouped windows from groups file didn't raise, bug #1449608

This commit is contained in:
markt 2006-07-04 07:10:15 +00:00
parent 1cc6cc4b15
commit aa589f3bdc
2 changed files with 4 additions and 0 deletions

View file

@ -1,6 +1,9 @@
(Format: Year/Month/Day)
Changes for 1.0rc3:
*06/07/04:
* Auto-grouped windows using groups file didn't raise (Thanks ac2dc, bug
#1449608)
Workspace.cc
* New windows don't steal focus from fullscreen windows; instead, flash the
titlebar and iconbar button (Mark)
Window.cc

View file

@ -311,6 +311,7 @@ bool Workspace::checkGrouping(FluxboxWindow &win) {
cerr<<__FILE__<<"("<<__FUNCTION__<<"): window ("<<*wit<<") attaching window ("<<&win<<")"<<endl;
#endif // DEBUG
(*wit)->attachClient(win.winClient());
(*wit)->raise();
return true; // grouping done
}