remove obsolete check of c->mon in fullscreennotify()

since 19a8a095eb it's checked in setfullscreen()
This commit is contained in:
Leonardo Hernández Hernández 2022-09-07 23:24:50 -05:00
parent 1aacfada29
commit 80084839a9
No known key found for this signature in database
GPG Key ID: E538897EE11B9624
1 changed files with 1 additions and 8 deletions

9
dwl.c
View File

@ -1246,14 +1246,7 @@ void
fullscreennotify(struct wl_listener *listener, void *data)
{
Client *c = wl_container_of(listener, c, fullscreen);
int fullscreen = client_wants_fullscreen(c);
if (!c->mon) {
/* if the client is not mapped yet, let mapnotify() call setfullscreen() */
c->isfullscreen = fullscreen;
return;
}
setfullscreen(c, fullscreen);
setfullscreen(c, client_wants_fullscreen(c));
}
void