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

Commit b86fcf6

Browse files
committed
add missing return in client_is_floating_type()
This causes all Xwayland clients to be treated as floating
1 parent c00697e commit b86fcf6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

client.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,8 @@ client_is_float_type(Client *c)
113113
&& (size_hints->max_width == size_hints->min_width ||
114114
size_hints->max_height == size_hints->min_height))
115115
return 1;
116+
117+
return 0;
116118
}
117119
#endif
118120

0 commit comments

Comments
 (0)