exact opposite, lol

This commit is contained in:
Keloran 2022-11-21 09:46:57 +00:00
parent a2751cfcd6
commit 456e06c4b5
No known key found for this signature in database

View File

@ -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<std::mutex> guard(m_Mutex);
showAltText = !showAltText;
dp.emit();
return AModule::handleToggle(event);
return true
}
std::string UPower::timeToString(gint64 time) {