diff options
author | mathias <mathias> | 2007-10-13 12:43:22 (GMT) |
---|---|---|
committer | mathias <mathias> | 2007-10-13 12:43:22 (GMT) |
commit | cfb1e06df208d55d34da6995335d3fff67426c72 (patch) | |
tree | dc14c07dd02f55a1a83c631ef157fdddf65f1863 | |
parent | 7c11e7691144626cfabddd7801152a7fdfc9a971 (diff) | |
download | fluxbox-cfb1e06df208d55d34da6995335d3fff67426c72.zip fluxbox-cfb1e06df208d55d34da6995335d3fff67426c72.tar.bz2 |
deiconify windows via :Deiconify in reverse order
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/FbCommands.cc | 4 |
2 files changed, 5 insertions, 2 deletions
@@ -1,5 +1,8 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 1.0.0: | 2 | Changes for 1.0.0: |
3 | *07/10/13: | ||
4 | * deiconify windows via :Deiconify in reverse order (Mathias) | ||
5 | FbCommands.cc | ||
3 | *07/10/08: | 6 | *07/10/08: |
4 | * Changed default style to bloe | 7 | * Changed default style to bloe |
5 | *07/10/07: | 8 | *07/10/07: |
diff --git a/src/FbCommands.cc b/src/FbCommands.cc index 2faa267..b7ee941 100644 --- a/src/FbCommands.cc +++ b/src/FbCommands.cc | |||
@@ -403,8 +403,8 @@ void DeiconifyCmd::execute() { | |||
403 | // we need to make a copy of the list of icons, or else our iterator can | 403 | // we need to make a copy of the list of icons, or else our iterator can |
404 | // become invalid | 404 | // become invalid |
405 | BScreen::Icons icon_list = screen->iconList(); | 405 | BScreen::Icons icon_list = screen->iconList(); |
406 | BScreen::Icons::iterator it = icon_list.begin(); | 406 | BScreen::Icons::reverse_iterator it = icon_list.rbegin(); |
407 | BScreen::Icons::iterator itend= icon_list.end(); | 407 | BScreen::Icons::reverse_iterator itend= icon_list.rend(); |
408 | unsigned int workspace_num= screen->currentWorkspaceID(); | 408 | unsigned int workspace_num= screen->currentWorkspaceID(); |
409 | unsigned int old_workspace_num; | 409 | unsigned int old_workspace_num; |
410 | 410 | ||