diff options
| author | tassaron | 2017-07-05 23:04:09 -0400 |
|---|---|---|
| committer | tassaron | 2017-07-05 23:04:09 -0400 |
| commit | 3de45b3629aa994e986245b6af2ef8016818a8e2 (patch) | |
| tree | 8d9907d88764965f0556e90f3640f95b66924d02 /src/toolkit.py | |
| parent | 3f7ead0d1f6be4f6b688cd05e75b69b61b15f861 (diff) | |
added basic rotate option to images
Diffstat (limited to 'src/toolkit.py')
| -rw-r--r-- | src/toolkit.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/toolkit.py b/src/toolkit.py index 798a5b5..589d8e6 100644 --- a/src/toolkit.py +++ b/src/toolkit.py @@ -55,6 +55,9 @@ def openPipe(commandList, **kwargs): def disableWhenEncoding(func): + ''' Blocks calls to a function while the video is being exported + in MainWindow. + ''' def decorator(*args, **kwargs): if args[0].encoding: return @@ -64,6 +67,9 @@ def disableWhenEncoding(func): def LoadDefaultSettings(self): + ''' Runs once at each program start-up. Fills in default settings + for any settings not found in settings.ini + ''' self.resolutions = [ '1920x1080', '1280x720', |
