allow "lower" as a reference point for MoveTo, etc.

This commit is contained in:
Mark Tiefenbruck 2009-06-28 09:04:46 -07:00
parent 4e586cc172
commit 8addc54e7e

View file

@ -3729,7 +3729,7 @@ FluxboxWindow::ReferenceCorner FluxboxWindow::getCorner(string str) {
return RIGHT;
if (str == "leftbottom" || str == "bottomleft" || str == "lowerleft")
return LEFTBOTTOM;
if (str == "bottom" || str == "bottomcenter")
if (str == "bottom" || str == "lower" || str == "bottomcenter")
return BOTTOM;
if (str == "rightbottom" || str == "bottomright" || str == "lowerright")
return RIGHTBOTTOM;