diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/WorkspaceCmd.cc | 6 |
2 files changed, 7 insertions, 4 deletions
@@ -1,7 +1,10 @@ | |||
1 | (Format: Year/Month/Day) | 1 | (Format: Year/Month/Day) |
2 | Changes for 0.9.13 | 2 | Changes for 0.9.13 |
3 | *05/04/23: | ||
4 | * Fixed #1020399 aka broken ShowDesktop - command (mathias) | ||
5 | WorkspaceCmd.cc | ||
3 | *05/04/22: | 6 | *05/04/22: |
4 | * clear maximized-Flags of a resized/moved Window (Mathias= | 7 | * clear maximized-Flags of a resized/moved Window (Mathias) |
5 | Window.cc | 8 | Window.cc |
6 | * fixed Iconified+Sticky Windows not shown in Iconbar (Mathias) | 9 | * fixed Iconified+Sticky Windows not shown in Iconbar (Mathias) |
7 | (when in WorkspaceIcons-Mode | 10 | (when in WorkspaceIcons-Mode |
diff --git a/src/WorkspaceCmd.cc b/src/WorkspaceCmd.cc index 3adc3c8..4cfcbb8 100644 --- a/src/WorkspaceCmd.cc +++ b/src/WorkspaceCmd.cc | |||
@@ -185,8 +185,8 @@ void ShowDesktopCmd::execute() { | |||
185 | if (screen == 0) | 185 | if (screen == 0) |
186 | return; | 186 | return; |
187 | 187 | ||
188 | Workspace *space = screen->currentWorkspace(); | 188 | Workspace::Windows windows(screen->currentWorkspace()->windowList()); |
189 | std::for_each(space->windowList().begin(), | 189 | std::for_each(windows.begin(), |
190 | space->windowList().end(), | 190 | windows.end(), |
191 | std::mem_fun(&FluxboxWindow::iconify)); | 191 | std::mem_fun(&FluxboxWindow::iconify)); |
192 | } | 192 | } |