Skip to content

Commit

Permalink
Merge branch 'main' into wlroots-next
Browse files Browse the repository at this point in the history
  • Loading branch information
djpohly committed Sep 9, 2021
2 parents 417e958 + 0c1e621 commit 40e45a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dwl.c
Original file line number Diff line number Diff line change
Expand Up @@ -1025,7 +1025,7 @@ void
setfullscreen(Client *c, int fullscreen)
{
c->isfullscreen = fullscreen;
c->bw = (1 - fullscreen) * borderpx;
c->bw = fullscreen ? 0 : borderpx;
client_set_fullscreen(c, fullscreen);

if (fullscreen) {
Expand Down

0 comments on commit 40e45a3

Please sign in to comment.