mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
Send correct size to fullscreen clients (FS#1093)
Titlebars are not visible for fullscreen clients, so it doesn't make sense to substract the area used for the titlebar in ConfigureNotify events. Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
parent
d8a93dafa3
commit
bc1507f96d
1 changed files with 2 additions and 1 deletions
|
@ -614,6 +614,7 @@ client_send_configure(client_t *c)
|
|||
{
|
||||
area_t geometry = c->geometry;
|
||||
|
||||
if (!c->fullscreen)
|
||||
client_remove_titlebar_geometry(c, &geometry);
|
||||
xwindow_configure(c->window, geometry, c->border_width);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue