mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
Add check for sw
This commit is contained in:
parent
e5fbbcb612
commit
3ea5fd79d8
1 changed files with 4 additions and 1 deletions
|
@ -30,7 +30,7 @@ titlebar_update(Client *c)
|
|||
style_t style;
|
||||
area_t geometry;
|
||||
|
||||
if(!c->titlebar.position)
|
||||
if(!c->titlebar.position || !c->titlebar.sw)
|
||||
return;
|
||||
|
||||
ctx = draw_context_new(globalconf.display, c->titlebar.sw->phys_screen,
|
||||
|
@ -59,6 +59,9 @@ titlebar_update(Client *c)
|
|||
void
|
||||
titlebar_update_geometry_floating(Client *c)
|
||||
{
|
||||
if(!c->titlebar.sw)
|
||||
return;
|
||||
|
||||
switch(c->titlebar.position)
|
||||
{
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue