aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--src/Workspace.cc1
2 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 13f8b6a..20ae1d7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,9 @@
1 (Format: Year/Month/Day) 1 (Format: Year/Month/Day)
2Changes for 1.0rc3: 2Changes 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 }