all repos — fluxbox @ d267acc8e0a87d16700cc8e5ee4c149b85bb4fc7

custom fork of the fluxbox windowmanager

fix slit onhead with BOTTOMLEFT placement, patch from Tomas Janousek <tomi at nomi dot cz>
mathias mathias
commit

d267acc8e0a87d16700cc8e5ee4c149b85bb4fc7

parent

3980e3c40a0ca4da702e53368b63c923824d224c

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

jump to
M ChangeLogChangeLog

@@ -1,5 +1,8 @@

(Format: Year/Month/Day) Changes for 1.0.0: +*07/04/20: + * Fix slit.onhead with BOTTOMLEFT placement.(Thanks Tomas Janousek <tomi@nomi.cz>) + Slit.cc *07/04/19: * Fixed crash when CustomMenu command doesn't point to a file (Mark) FbCommands.cc
M src/Slit.ccsrc/Slit.cc

@@ -847,7 +847,7 @@ break;

case BOTTOMLEFT: frame.x = head_x; - frame.y = head_h - frame.height - border_width*2; + frame.y = head_y + head_h - frame.height - border_width*2; if (direction() == VERTICAL) { frame.x_hidden = head_x + bevel_width - border_width - frame.width;