all repos — fluxbox @ 83a7202a669baa543df9c04f131d272664526b9c

custom fork of the fluxbox windowmanager

forgot to revert part of my previous patch
markt markt
commit

83a7202a669baa543df9c04f131d272664526b9c

parent

f42d39cc351c1d6c6b424d451e0cc5ddcec8cab3

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

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

@@ -2814,16 +2814,11 @@ }

screen().showPosition(dx, dy); } // end if moving - } else if (isResizing() // if we're already resizing the window - || functions.resize - // or if we're dragging one of the grips - && ((me.state & Button1Mask) - && (me.window == frame().gripRight() - || me.window == frame().gripLeft()) - // or if we're right-click dragging the border - || (me.state & Button3Mask) - && me.window == frame().window() - && !Fluxbox::instance()->getIgnoreBorder())) { + } else if (functions.resize && + (((me.state & Button1Mask) && + (me.window == frame().gripRight() || + me.window == frame().gripLeft())) || + me.window == frame().window())) { if (! resizing) {