We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 501e63f commit 5b7d0a2Copy full SHA for 5b7d0a2
src/AModule.cpp
@@ -90,14 +90,14 @@ bool AModule::handleMouseEnter(GdkEventCrossing* const& e) {
90
if (auto* module = event_box_.get_child(); module != nullptr) {
91
module->set_state_flags(Gtk::StateFlags::STATE_FLAG_PRELIGHT);
92
}
93
- return true;
+ return false;
94
95
96
bool AModule::handleMouseLeave(GdkEventCrossing* const& e) {
97
98
module->unset_state_flags(Gtk::StateFlags::STATE_FLAG_PRELIGHT);
99
100
101
102
103
bool AModule::handleToggle(GdkEventButton* const& e) { return handleUserEvent(e); }
0 commit comments