Compare commits

...

3 Commits

Author SHA1 Message Date
Alex
a04016e0b6 chore: 0.10.2 2024-04-23 17:59:08 +02:00
Alexis Rouillard
08b0ed1b79 Merge pull request #3165 from haug1/fix/group-drawer-hover
fix(#3162): hover event did not propagate causing issues
2024-04-23 16:23:05 +02:00
Lars-Ragnar A. Haugen
5b7d0a2810 fix(#3162): hover event did not propagate causing issues 2024-04-23 16:18:54 +02:00
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
project(
'waybar', 'cpp', 'c',
version: '0.10.1',
version: '0.10.2',
license: 'MIT',
meson_version: '>= 0.59.0',
default_options : [

View File

@@ -90,14 +90,14 @@ bool AModule::handleMouseEnter(GdkEventCrossing* const& e) {
if (auto* module = event_box_.get_child(); module != nullptr) {
module->set_state_flags(Gtk::StateFlags::STATE_FLAG_PRELIGHT);
}
return true;
return false;
}
bool AModule::handleMouseLeave(GdkEventCrossing* const& e) {
if (auto* module = event_box_.get_child(); module != nullptr) {
module->unset_state_flags(Gtk::StateFlags::STATE_FLAG_PRELIGHT);
}
return true;
return false;
}
bool AModule::handleToggle(GdkEventButton* const& e) { return handleUserEvent(e); }