diff options
| author | tassaron | 2017-06-13 22:47:18 -0400 |
|---|---|---|
| committer | tassaron | 2017-06-13 22:47:18 -0400 |
| commit | 2ad14b7d6ca9216bcdc72c5e13937fcbccc887a3 (patch) | |
| tree | 489dfd5ef2c125040fbf04415ba139fb5798c56b /components/original.py | |
| parent | 307d499f9ae2729c790fe9258d88aca72331cdf6 (diff) | |
asterisk next to modified preset is more accurate
hopefully
Diffstat (limited to 'components/original.py')
| -rw-r--r-- | components/original.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/original.py b/components/original.py index f3f578d..9df2815 100644 --- a/components/original.py +++ b/components/original.py @@ -11,7 +11,7 @@ from copy import copy class Component(__base__.Component): '''Original Audio Visualization''' - modified = QtCore.pyqtSignal(int, bool) + modified = QtCore.pyqtSignal(int, dict) def widget(self, parent): self.parent = parent @@ -35,10 +35,10 @@ class Component(__base__.Component): return page def update(self): - super().update() self.layout = self.page.comboBox_visLayout.currentIndex() self.visColor = self.RGBFromString(self.page.lineEdit_visColor.text()) self.parent.drawPreview() + super().update() def loadPreset(self, pr, presetName=None): super().loadPreset(pr, presetName) |
