allow "lower" as a reference point for MoveTo, etc.
This commit is contained in:
parent
4e586cc172
commit
8addc54e7e
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue