hyprland/window: rename .hidden to .swallowing (and fix grouped windows)

This commit is contained in:
gardenapple
2023-07-12 19:01:45 +03:00
parent 14c6550593
commit daca57129f
3 changed files with 20 additions and 11 deletions

View File

@ -31,6 +31,8 @@ class Window : public waybar::AAppIconLabel, public EventHandler {
std::string initial_class_name;
std::string title;
std::string initial_title;
bool fullscreen;
bool grouped;
static auto parse(const Json::Value&) -> WindowData;
};
@ -51,7 +53,7 @@ class Window : public waybar::AAppIconLabel, public EventHandler {
std::string last_solo_class_;
bool solo_;
bool all_floating_;
bool hidden_;
bool swallowing_;
bool fullscreen_;
};