all repos — fluxbox @ d1876666c91b6f71566db7cf4034709283cf2ee6

custom fork of the fluxbox windowmanager

clear the maximized-Flag from a resized/moved Window ... a moved or resized
Window is not maximized any longer per definition imho. maybe we need to apply
the same policy to the fullscreen-State
mathias mathias
commit

d1876666c91b6f71566db7cf4034709283cf2ee6

parent

0cc3391cec84e72b098170221c9b5c166ce94579

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

jump to
M ChangeLogChangeLog

@@ -1,6 +1,8 @@

(Format: Year/Month/Day) Changes for 0.9.13 *05/04/22: + * clear maximized-Flags of a resized/moved Window (Mathias= + Window.cc * fixed Iconified+Sticky Windows not shown in Iconbar (Mathias) (when in WorkspaceIcons-Mode IconbarTool.cc
M src/Window.ccsrc/Window.cc

@@ -3188,6 +3188,8 @@ if (s_num_grabs > 0)

return; moving = true; + maximized = MAX_NONE; + Fluxbox *fluxbox = Fluxbox::instance(); // grabbing (and masking) on the root window allows us to // freely map and unmap the window we're moving.

@@ -3411,6 +3413,7 @@ if (s_num_grabs > 0 || isShaded() || isIconic() )

return; resizing = true; + maximized = MAX_NONE; const Cursor& cursor = (m_resize_corner == LEFTTOP) ? frame().theme().upperLeftAngleCursor() : (m_resize_corner == RIGHTTOP) ? frame().theme().upperRightAngleCursor() :