Skip to content

Commit

Permalink
U auto_theme.py: improve tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
yurenchen000 committed Oct 7, 2024
1 parent 7f4a35c commit 0a269f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions auto_theme.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def __init__(self, parent, mgr):
self.radio_dark = Gtk.RadioButton.new_with_label_from_widget(self.radio_light, "Dark")
self.radio_auto = Gtk.RadioButton.new_with_label_from_widget(self.radio_light, "Auto")

self.radio_auto.set_tooltip_text('follow system theme')
self.radio_auto.set_tooltip_text('Follow System Theme\n - Need Gtk: Auto')
self.radio_light.set_mode(False)
self.radio_dark.set_mode(False)
self.radio_auto.set_mode(False)
Expand Down Expand Up @@ -279,7 +279,7 @@ def __init__(self, parent, mgr):
self.variant_dark = Gtk.RadioButton.new_with_label_from_widget(self.variant_light, "Dark")
self.variant_auto = Gtk.RadioButton.new_with_label_from_widget(self.variant_light, "Auto")

self.variant_auto.set_tooltip_text('follow system theme')
self.variant_auto.set_tooltip_text('Follow System Theme')
self.variant_light.set_mode(False)
self.variant_dark.set_mode(False)
self.variant_auto.set_mode(False)
Expand Down

0 comments on commit 0a269f5

Please sign in to comment.