Skip to content

Commit

Permalink
Add tooltip to explain that status windows may remain visible (#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcaelers committed Aug 16, 2023
1 parent f56629b commit 861c0c7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ui/app/toolkits/gtkmm/preferences/TimerBoxPreferencePanel.cc
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,12 @@ TimerBoxPreferencePanel::create_page()
ontop_cb->set_active(GUIConfig::main_window_always_on_top()());
}

Gtk::Label *enabled_lab = Gtk::manage(GtkUtil::create_label(_("Show status window"), false));
Gtk::Widget *enabled_lab = Gtk::manage(
GtkUtil::create_label_with_tooltip(_("Show status window"),
_("Note that the status window is only hidden if "
"the status icon, or an applet is shown. Some desktop environment "
"do not support, or have disabled status icons.")));

enabled_cb = Gtk::manage(new Gtk::CheckButton());
enabled_cb->add(*enabled_lab);
hig->add_widget(*enabled_cb);
Expand Down

0 comments on commit 861c0c7

Please sign in to comment.