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/mainwindow.py | |
| parent | 3a6d7ae421ad2b650cac7f17d43be313787f0e61 (diff) | |
moved functions into toolkit, fixed CMD appearing on Windows
Diffstat (limited to 'src/mainwindow.py')
| -rw-r--r-- | src/mainwindow.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwindow.py b/src/mainwindow.py index 5068108..e8a3221 100644 --- a/src/mainwindow.py +++ b/src/mainwindow.py @@ -1,6 +1,6 @@ -from queue import Queue from PyQt5 import QtCore, QtGui, uic, QtWidgets from PyQt5.QtWidgets import QMenu, QShortcut +from queue import Queue import sys import os import signal @@ -11,7 +11,7 @@ import core import preview_thread import video_thread from presetmanager import PresetManager -from main import LoadDefaultSettings, disableWhenEncoding +from toolkit import LoadDefaultSettings, disableWhenEncoding class PreviewWindow(QtWidgets.QLabel): |
