diff --git a/src/modules/upower/upower.cpp b/src/modules/upower/upower.cpp index e985007..a1df380 100644 --- a/src/modules/upower/upower.cpp +++ b/src/modules/upower/upower.cpp @@ -250,10 +250,14 @@ const std::string UPower::getDeviceStatus(UpDeviceState& state) { } bool UPower::handleToggle(GdkEventButton* const& event) { + bool clickHandled = AModule::handleToggle(event); + if (clickHandled) { + return clickHandled; + } std::lock_guard guard(m_Mutex); showAltText = !showAltText; dp.emit(); - return AModule::handleToggle(event); + return true } std::string UPower::timeToString(gint64 time) {