diff options
| author | tassaron | 2017-07-04 19:52:52 -0400 |
|---|---|---|
| committer | tassaron | 2017-07-04 19:52:52 -0400 |
| commit | ba0409829de62b745d6f87749572a416061a42b4 (patch) | |
| tree | 9af0a727e1194432718012110760a5ffc57278fc /src/presetmanager.py | |
| parent | 3a6d7ae421ad2b650cac7f17d43be313787f0e61 (diff) | |
moved functions into toolkit, fixed CMD appearing on Windows
Diffstat (limited to 'src/presetmanager.py')
| -rw-r--r-- | src/presetmanager.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/presetmanager.py b/src/presetmanager.py index 68679ec..805b93e 100644 --- a/src/presetmanager.py +++ b/src/presetmanager.py @@ -3,6 +3,7 @@ import string import os import core +import toolkit class PresetManager(QtWidgets.QDialog): @@ -147,7 +148,7 @@ class PresetManager(QtWidgets.QDialog): currentPreset ) if OK: - if core.Core.badName(newName): + if toolkit.badName(newName): self.warnMessage(self.parent.window) continue if newName: @@ -252,7 +253,7 @@ class PresetManager(QtWidgets.QDialog): self.presetRows[index][2] ) if OK: - if core.Core.badName(newName): + if toolkit.badName(newName): self.warnMessage() continue if newName: |
