aboutsummaryrefslogtreecommitdiff
path: root/src/Slit.cc
diff options
context:
space:
mode:
authormathias <mathias>2007-04-20 20:26:57 (GMT)
committermathias <mathias>2007-04-20 20:26:57 (GMT)
commitd267acc8e0a87d16700cc8e5ee4c149b85bb4fc7 (patch)
tree622c53ab84e08a1591dfeb45a283a0ae92d71808 /src/Slit.cc
parent3980e3c40a0ca4da702e53368b63c923824d224c (diff)
downloadfluxbox-d267acc8e0a87d16700cc8e5ee4c149b85bb4fc7.zip
fluxbox-d267acc8e0a87d16700cc8e5ee4c149b85bb4fc7.tar.bz2
fix slit onhead with BOTTOMLEFT placement, patch from Tomas Janousek <tomi at nomi dot cz>
Diffstat (limited to 'src/Slit.cc')
-rw-r--r--src/Slit.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Slit.cc b/src/Slit.cc
index 564523a..fbab1e6 100644
--- a/src/Slit.cc
+++ b/src/Slit.cc
@@ -847,7 +847,7 @@ void Slit::reposition() {
847 847
848 case BOTTOMLEFT: 848 case BOTTOMLEFT:
849 frame.x = head_x; 849 frame.x = head_x;
850 frame.y = head_h - frame.height - border_width*2; 850 frame.y = head_y + head_h - frame.height - border_width*2;
851 if (direction() == VERTICAL) { 851 if (direction() == VERTICAL) {
852 frame.x_hidden = head_x + bevel_width - 852 frame.x_hidden = head_x + bevel_width -
853 border_width - frame.width; 853 border_width - frame.width;