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.
This commit is contained in:
Aqa-Ib
2024-11-06 13:07:09 +00:00
committed by GitHub
parent 5f260516af
commit 77b50b4c7a

View File

@ -191,12 +191,6 @@ void Window::queryActiveWorkspace() {
solo_ = true; solo_ = true;
} }
// Grouped windows have a tab bar and therefore don't look fullscreen or solo
if (windowData_.grouped) {
fullscreen_ = false;
solo_ = false;
}
if (solo_) { if (solo_) {
soloClass_ = windowData_.class_name; soloClass_ = windowData_.class_name;
} else { } else {