Skip to content

Commit 77b50b4

Browse files
author
Aqa-Ib
authoredNov 6, 2024
fix hyprland's grouped window flags
Both flags are wrong, because: - the active group member can be fullscreened. - technically, a grouped window can be solo as well, because only the active group member is shown, the other members are hidden. Also you can have a group consisting of only one window.
1 parent 5f26051 commit 77b50b4

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed
 

‎src/modules/hyprland/window.cpp

-6
Original file line numberDiff line numberDiff line change
@@ -191,12 +191,6 @@ void Window::queryActiveWorkspace() {
191191
solo_ = true;
192192
}
193193

194-
// Grouped windows have a tab bar and therefore don't look fullscreen or solo
195-
if (windowData_.grouped) {
196-
fullscreen_ = false;
197-
solo_ = false;
198-
}
199-
200194
if (solo_) {
201195
soloClass_ = windowData_.class_name;
202196
} else {

0 commit comments

Comments
 (0)