Skip to content

Commit 5b7d0a2

Browse files
committed
fix(#3162): hover event did not propagate causing issues
1 parent 501e63f commit 5b7d0a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/AModule.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,14 @@ bool AModule::handleMouseEnter(GdkEventCrossing* const& e) {
9090
if (auto* module = event_box_.get_child(); module != nullptr) {
9191
module->set_state_flags(Gtk::StateFlags::STATE_FLAG_PRELIGHT);
9292
}
93-
return true;
93+
return false;
9494
}
9595

9696
bool AModule::handleMouseLeave(GdkEventCrossing* const& e) {
9797
if (auto* module = event_box_.get_child(); module != nullptr) {
9898
module->unset_state_flags(Gtk::StateFlags::STATE_FLAG_PRELIGHT);
9999
}
100-
return true;
100+
return false;
101101
}
102102

103103
bool AModule::handleToggle(GdkEventButton* const& e) { return handleUserEvent(e); }

0 commit comments

Comments
 (0)