Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Commit

Permalink
add missing return in client_is_floating_type()
Browse files Browse the repository at this point in the history
This causes all Xwayland clients to be treated as floating
  • Loading branch information
sevz17 committed Apr 11, 2022
1 parent c00697e commit b86fcf6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions client.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ client_is_float_type(Client *c)
&& (size_hints->max_width == size_hints->min_width ||
size_hints->max_height == size_hints->min_height))
return 1;

return 0;
}
#endif

Expand Down

0 comments on commit b86fcf6

Please sign in to comment.