diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2016-10-15 12:16:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-15 12:16:47 -0400 |
commit | 90849caf413edc4002723281bc8581a7de4176e2 (patch) | |
tree | 3e68c53f7581a2c7265ce3fd0565435416359abf /src | |
parent | Merge pull request #382 from jonls/alloca-fix (diff) | |
parent | add display of color temperature and period in the tooltip status icon (diff) | |
download | redshift-ng-90849caf413edc4002723281bc8581a7de4176e2.tar.gz redshift-ng-90849caf413edc4002723281bc8581a7de4176e2.tar.bz2 redshift-ng-90849caf413edc4002723281bc8581a7de4176e2.tar.xz |
Merge pull request #383 from jonls/icon-tooltip
add display of color temperature and period in the tooltip status icon
Diffstat (limited to 'src')
-rw-r--r-- | src/redshift-gtk/statusicon.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/redshift-gtk/statusicon.py b/src/redshift-gtk/statusicon.py index 86897c4..9d9835d 100644 --- a/src/redshift-gtk/statusicon.py +++ b/src/redshift-gtk/statusicon.py @@ -474,15 +474,23 @@ class RedshiftStatusIcon(object): def change_temperature(self, temperature): '''Change interface to new temperature''' self.temperature_label.set_markup('<b>{}:</b> {}K'.format(_('Color temperature'), temperature)) + self.update_tooltip_text() def change_period(self, period): '''Change interface to new period''' self.period_label.set_markup('<b>{}:</b> {}'.format(_('Period'), period)) + self.update_tooltip_text() def change_location(self, location): '''Change interface to new location''' self.location_label.set_markup('<b>{}:</b> {}, {}'.format(_('Location'), *location)) + def update_tooltip_text(self): + '''Update text of tooltip status icon ''' + if not appindicator: + self.status_icon.set_tooltip_text('{}: {}K, {}: {}'.format( + _('Color temperature'), self._controller.temperature, + _('Period'), self._controller.period)) def autostart_cb(self, widget, data=None): '''Callback when a request to toggle autostart is made''' |