diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/FbCommands.cc | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -1,5 +1,7 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 1.1: | 2 | Changes 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 | ||