mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
fix bottom statusbar position
This commit is contained in:
parent
7ba97b3630
commit
0d1497d3bf
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ statusbar_update_position(Statusbar *statusbar)
|
|||
simplewindow_move(statusbar->sw, area.x, area.y);
|
||||
break;
|
||||
case Bottom:
|
||||
simplewindow_move(statusbar->sw, area.x, area.height - statusbar->sw->geometry.height);
|
||||
simplewindow_move(statusbar->sw, area.x, (area.y + area.height) - statusbar->sw->geometry.height);
|
||||
break;
|
||||
case Left:
|
||||
simplewindow_move(statusbar->sw, area.x - statusbar->sw->geometry.height,
|
||||
|
|
Loading…
Reference in a new issue