aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathias <mathias>2007-10-13 11:00:49 (GMT)
committermathias <mathias>2007-10-13 11:00:49 (GMT)
commit49548539d2d8a0f7dddeb8cccc1047f9dcc04309 (patch)
tree79fcb06c702707a0cefa236cb0e1e75648d4a962
parent12cc09c661a80d6948a8df308a35114325ff3004 (diff)
downloadfluxbox-49548539d2d8a0f7dddeb8cccc1047f9dcc04309.zip
fluxbox-49548539d2d8a0f7dddeb8cccc1047f9dcc04309.tar.bz2
deiconify windows via :Deiconify in reverse order
-rw-r--r--ChangeLog2
-rw-r--r--src/FbCommands.cc4
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0f8b8a4..d4d23f5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
1 (Format: Year/Month/Day) 1 (Format: Year/Month/Day)
2Changes for 1.1: 2Changes for 1.1:
3*07/10/13: deiconify windows via :Deiconify in reverse order (Mathias)
4 FbCommands.cc
3*07/06/08: 5*07/06/08:
4 * Fix transient windows getting tabbed from apps file and not changing layers 6 * Fix transient windows getting tabbed from apps file and not changing layers
5 when main window is in a lowered tab (Mark) 7 when main window is in a lowered tab (Mark)
diff --git a/src/FbCommands.cc b/src/FbCommands.cc
index 2527ccf..f536fd8 100644
--- a/src/FbCommands.cc
+++ b/src/FbCommands.cc
@@ -433,8 +433,8 @@ void DeiconifyCmd::execute() {
433 // we need to make a copy of the list of icons, or else our iterator can 433 // we need to make a copy of the list of icons, or else our iterator can
434 // become invalid 434 // become invalid
435 BScreen::Icons icon_list = screen->iconList(); 435 BScreen::Icons icon_list = screen->iconList();
436 BScreen::Icons::iterator it = icon_list.begin(); 436 BScreen::Icons::reverse_iterator it = icon_list.rbegin();
437 BScreen::Icons::iterator itend= icon_list.end(); 437 BScreen::Icons::reverse_iterator itend= icon_list.rend();
438 unsigned int workspace_num= screen->currentWorkspaceID(); 438 unsigned int workspace_num= screen->currentWorkspaceID();
439 unsigned int old_workspace_num; 439 unsigned int old_workspace_num;
440 440