all repos — fluxbox @ 4e831484d55398e5c328aeb531060ffaf997f300

custom fork of the fluxbox windowmanager

fixed resize bug (caused by typo, see #2498507)
Peter Hercek hercek at sf dot net
commit

4e831484d55398e5c328aeb531060ffaf997f300

parent

f5fdbab98c437fe4eb5f74d82152a9a9ef7a47ed

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

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

@@ -1703,7 +1703,7 @@ }

void FbWinFrame::applySizeHints(unsigned int &width, unsigned int &height, bool maximizing) const { - const int h = height - titlebarHeight() + handleHeight(); + const int h = height - titlebarHeight() - handleHeight(); height = max(h, static_cast<int>(titlebarHeight() + handleHeight())); sizeHints().apply(width, height, maximizing); height += titlebarHeight() + handleHeight();