83 """ |
83 """ |
84 Preferences.setUI("NotificationTimeout", self.timeoutSpinBox.value()) |
84 Preferences.setUI("NotificationTimeout", self.timeoutSpinBox.value()) |
85 Preferences.setUI("NotificationPosition", QPoint( |
85 Preferences.setUI("NotificationPosition", QPoint( |
86 self.xSpinBox.value(), self.ySpinBox.value())) |
86 self.xSpinBox.value(), self.ySpinBox.value())) |
87 |
87 |
88 for key in self.__colors.keys(): |
88 for key in self.__colors: |
89 Preferences.setUI(key, self.__colors[key]) |
89 Preferences.setUI(key, self.__colors[key]) |
90 |
90 |
91 @pyqtSlot(bool) |
91 @pyqtSlot(bool) |
92 def on_visualButton_clicked(self, checked): |
92 def on_visualButton_clicked(self, checked): |
93 """ |
93 """ |