Merge remote-tracking branch 'origin/master' into pr-4060

# Conflicts:
#	man/waybar.5.scd.in
This commit is contained in:
Alex
2026-07-03 23:50:55 +02:00
93 changed files with 2978 additions and 230 deletions
+2
View File
@@ -101,11 +101,13 @@ Group::Group(const std::string& name, const std::string& id, const Json::Value&
void Group::show_group() {
box.set_state_flags(Gtk::StateFlags::STATE_FLAG_PRELIGHT);
revealer.set_reveal_child(true);
box.get_style_context()->add_class("expanded");
}
void Group::hide_group() {
box.unset_state_flags(Gtk::StateFlags::STATE_FLAG_PRELIGHT);
revealer.set_reveal_child(false);
box.get_style_context()->remove_class("expanded");
}
bool Group::handleMouseEnter(GdkEventCrossing* const& e) {