diff options
author | Ciro Mattia Gonano <ciromattia@gmail.com> | 2013-03-12 16:47:11 +0100 |
---|---|---|
committer | Ciro Mattia Gonano <ciromattia@gmail.com> | 2013-03-12 16:47:11 +0100 |
commit | 7a7a2bc10b95419a48090af3c0648502aaa9b557 (patch) | |
tree | 14872753d68a3bc2d732981e64814dad8fb3df52 /kcc.py | |
parent | Binary release (diff) | |
download | kcc-7a7a2bc10b95419a48090af3c0648502aaa9b557.tar.gz kcc-7a7a2bc10b95419a48090af3c0648502aaa9b557.tar.bz2 kcc-7a7a2bc10b95419a48090af3c0648502aaa9b557.zip |
Don't set topmost as we don't want GUI to be ALWAYS on top
Diffstat (limited to 'kcc.py')
-rw-r--r-- | kcc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kcc.py b/kcc.py index 158afad..3ec5d11 100644 --- a/kcc.py +++ b/kcc.py @@ -30,7 +30,7 @@ root = Tk() root.resizable(width=False, height=False) root.config(padx=5, pady=5, takefocus=True) root.title("Kindle Comic Converter v" + __version__) -root.wm_attributes("-topmost", 1) +#root.wm_attributes("-topmost", 1) if platform == 'darwin': os.environ['PATH'] = '/usr/local/bin:' + os.environ['PATH'] elif platform == 'win32': |