mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
Add the possibility to disable the tooltip
This commit is contained in:
parent
d708ce2be9
commit
c2ed0cb832
@ -27,7 +27,9 @@ auto waybar::modules::IdleInhibitor::update() -> void
|
||||
label_.set_markup(
|
||||
fmt::format(format_, fmt::arg("status", status_),
|
||||
fmt::arg("icon", getIcon(0, status_))));
|
||||
label_.set_tooltip_text(status_);
|
||||
if(tooltipEnabled()) {
|
||||
label_.set_tooltip_text(status_);
|
||||
}
|
||||
}
|
||||
|
||||
bool waybar::modules::IdleInhibitor::onClick(GdkEventButton* const& e)
|
||||
|
Loading…
Reference in New Issue
Block a user