all repos — fluxbox @ 1591c9528579fe7966b2011997c599b00f1ade60

custom fork of the fluxbox windowmanager

fixes a problem with clients which define/request a Strut (see
http://standards.freedesktop.org/wm-spec/wm-spec-1.3.html#id2507548), eg
kicker: after killing/closing kicker the availableWorkspaceArea is not
recalculated which lead to kind of invisible barrier where the Strut was.
mathias mathias
commit

1591c9528579fe7966b2011997c599b00f1ade60

parent

3cd94d0629a1d2259883dcd7d9bcc59971aee251

1 files changed, 1 insertions(+), 0 deletions(-)

jump to
M src/WinClient.ccsrc/WinClient.cc

@@ -626,6 +626,7 @@

void WinClient::clearStrut() { if (m_strut != 0) { screen().clearStrut(m_strut); + screen().updateAvailableWorkspaceArea(); m_strut = 0; } }