diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2017-07-30 20:16:50 -0700 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2017-07-30 20:21:52 -0700 |
commit | 7e9886cd68be7c9a5ebb47eef93253bb006814b0 (patch) | |
tree | 0b9c1c206c37e9eda1fb766b12d9f28df6c499ee /src/redshift-gtk/statusicon.py | |
parent | utils: Make xdg module optional (diff) | |
download | redshift-ng-7e9886cd68be7c9a5ebb47eef93253bb006814b0.tar.gz redshift-ng-7e9886cd68be7c9a5ebb47eef93253bb006814b0.tar.bz2 redshift-ng-7e9886cd68be7c9a5ebb47eef93253bb006814b0.tar.xz |
controller: Emit signal when stopped
Diffstat (limited to 'src/redshift-gtk/statusicon.py')
-rw-r--r-- | src/redshift-gtk/statusicon.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/redshift-gtk/statusicon.py b/src/redshift-gtk/statusicon.py index 9623a14..1dd8970 100644 --- a/src/redshift-gtk/statusicon.py +++ b/src/redshift-gtk/statusicon.py @@ -152,6 +152,7 @@ class RedshiftStatusIcon(object): 'temperature-changed', self.temperature_change_cb) self._controller.connect('location-changed', self.location_change_cb) self._controller.connect('error-occured', self.error_occured_cb) + self._controller.connect('stopped', self.controller_stopped_cb) # Set info box text self.change_inhibited(self._controller.inhibited) @@ -278,6 +279,10 @@ class RedshiftStatusIcon(object): # Quit when the model dialog is closed sys.exit(-1) + def controller_stopped_cb(self, controller): + """Callback when controlled is stopped successfully.""" + Gtk.main_quit() + # Update interface def change_inhibited(self, inhibited): """Change interface to new inhibition status.""" |