summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Tiefenbruck <mark@fluxbox.org>2009-06-28 16:04:46 (GMT)
committerMark Tiefenbruck <mark@fluxbox.org>2009-06-28 16:04:46 (GMT)
commit8addc54e7e5374d402e78fffc03d93657a20ef73 (patch)
treec9f60e4dff2c04d6c8d184a7322f3e7542ecd564
parent4e586cc1729fc1c7115dfc6d2499d40db559b8e1 (diff)
downloadfluxbox_lack-8addc54e7e5374d402e78fffc03d93657a20ef73.zip
fluxbox_lack-8addc54e7e5374d402e78fffc03d93657a20ef73.tar.bz2
allow "lower" as a reference point for MoveTo, etc.
-rw-r--r--src/Window.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Window.cc b/src/Window.cc
index b2bfcf7..825c050 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -3729,7 +3729,7 @@ FluxboxWindow::ReferenceCorner FluxboxWindow::getCorner(string str) {
3729 return RIGHT; 3729 return RIGHT;
3730 if (str == "leftbottom" || str == "bottomleft" || str == "lowerleft") 3730 if (str == "leftbottom" || str == "bottomleft" || str == "lowerleft")
3731 return LEFTBOTTOM; 3731 return LEFTBOTTOM;
3732 if (str == "bottom" || str == "bottomcenter") 3732 if (str == "bottom" || str == "lower" || str == "bottomcenter")
3733 return BOTTOM; 3733 return BOTTOM;
3734 if (str == "rightbottom" || str == "bottomright" || str == "lowerright") 3734 if (str == "rightbottom" || str == "bottomright" || str == "lowerright")
3735 return RIGHTBOTTOM; 3735 return RIGHTBOTTOM;