exact opposite, lol
This commit is contained in:
parent
a2751cfcd6
commit
456e06c4b5
|
@ -250,10 +250,14 @@ const std::string UPower::getDeviceStatus(UpDeviceState& state) {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool UPower::handleToggle(GdkEventButton* const& event) {
|
bool UPower::handleToggle(GdkEventButton* const& event) {
|
||||||
|
bool clickHandled = AModule::handleToggle(event);
|
||||||
|
if (clickHandled) {
|
||||||
|
return clickHandled;
|
||||||
|
}
|
||||||
std::lock_guard<std::mutex> guard(m_Mutex);
|
std::lock_guard<std::mutex> guard(m_Mutex);
|
||||||
showAltText = !showAltText;
|
showAltText = !showAltText;
|
||||||
dp.emit();
|
dp.emit();
|
||||||
return AModule::handleToggle(event);
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string UPower::timeToString(gint64 time) {
|
std::string UPower::timeToString(gint64 time) {
|
||||||
|
|
Loading…
Reference in New Issue