all repos — fluxbox @ cfb1e06df208d55d34da6995335d3fff67426c72

custom fork of the fluxbox windowmanager

deiconify windows via :Deiconify in reverse order
mathias mathias
commit

cfb1e06df208d55d34da6995335d3fff67426c72

parent

7c11e7691144626cfabddd7801152a7fdfc9a971

2 files changed, 5 insertions(+), 2 deletions(-)

jump to
M ChangeLogChangeLog

@@ -1,5 +1,8 @@

(Format: Year/Month/Day) Changes for 1.0.0: +*07/10/13: + * deiconify windows via :Deiconify in reverse order (Mathias) + FbCommands.cc *07/10/08: * Changed default style to bloe *07/10/07:
M src/FbCommands.ccsrc/FbCommands.cc

@@ -403,8 +403,8 @@

// we need to make a copy of the list of icons, or else our iterator can // become invalid BScreen::Icons icon_list = screen->iconList(); - BScreen::Icons::iterator it = icon_list.begin(); - BScreen::Icons::iterator itend= icon_list.end(); + BScreen::Icons::reverse_iterator it = icon_list.rbegin(); + BScreen::Icons::reverse_iterator itend= icon_list.rend(); unsigned int workspace_num= screen->currentWorkspaceID(); unsigned int old_workspace_num;