diff options
author | mathias <mathias> | 2007-10-13 11:00:49 (GMT) |
---|---|---|
committer | mathias <mathias> | 2007-10-13 11:00:49 (GMT) |
commit | 49548539d2d8a0f7dddeb8cccc1047f9dcc04309 (patch) | |
tree | 79fcb06c702707a0cefa236cb0e1e75648d4a962 /src | |
parent | 12cc09c661a80d6948a8df308a35114325ff3004 (diff) | |
download | fluxbox-49548539d2d8a0f7dddeb8cccc1047f9dcc04309.zip fluxbox-49548539d2d8a0f7dddeb8cccc1047f9dcc04309.tar.bz2 |
deiconify windows via :Deiconify in reverse order
Diffstat (limited to 'src')
-rw-r--r-- | src/FbCommands.cc | 4 |
1 files changed, 2 insertions, 2 deletions
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 | ||