diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-05 15:30:43 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-05 15:30:43 +0100 |
commit | 8734c7a108f1b57fc34d28722910f3887f978777 (patch) | |
tree | 863d673372ed09ad331d7d940019913833c3ae97 | |
parent | Unlist redshift/issues/551: rejected (should be solved externally, optionally using hooks) (diff) | |
download | redshift-ng-8734c7a108f1b57fc34d28722910f3887f978777.tar.gz redshift-ng-8734c7a108f1b57fc34d28722910f3887f978777.tar.bz2 redshift-ng-8734c7a108f1b57fc34d28722910f3887f978777.tar.xz |
Resolve redshift/issues/223: redshift-gtk: fix title of window to Redshift
Signed-off-by: Mattias Andrée <m@maandree.se>
-rw-r--r-- | TODO | 1 | ||||
-rw-r--r-- | src/redshift-gtk/statusicon.py | 2 |
2 files changed, 1 insertions, 2 deletions
@@ -34,7 +34,6 @@ https://github.com/jonls/redshift/issues/217 redshift appears to stop working af https://github.com/jonls/redshift/issues/218 multiple redshift-gtk and redshift processes can run at once https://github.com/jonls/redshift/issues/219 Linux Mint Xfce 17.1: redshift-gtk does not show in panel https://github.com/jonls/redshift/issues/222 redshift fails to run on startup or launch from script -https://github.com/jonls/redshift/issues/223 add name of program to info window https://github.com/jonls/redshift/issues/226 Redshift exits if no provider is found (no internet connection) https://github.com/jonls/redshift/issues/232 Windows 7 - redshift.exe doesn't close https://github.com/jonls/redshift/issues/235 The print option does not tell if redshift is active or not. diff --git a/src/redshift-gtk/statusicon.py b/src/redshift-gtk/statusicon.py index b4adfb0..d5baf3d 100644 --- a/src/redshift-gtk/statusicon.py +++ b/src/redshift-gtk/statusicon.py @@ -117,7 +117,7 @@ class RedshiftStatusIcon(object): self.status_menu.append(quit_item) # Create info dialog - self.info_dialog = Gtk.Window(title=_('Info')) + self.info_dialog = Gtk.Window(title='Redshift') self.info_dialog.set_resizable(False) self.info_dialog.set_property('border-width', 6) self.info_dialog.connect('delete-event', self.close_info_dialog_cb) |