about summary refs log tree commit diff
path: root/kcc.py
diff options
context:
space:
mode:
authorCiro Mattia Gonano <ciromattia@gmail.com>2013-03-12 16:47:11 +0100
committerCiro Mattia Gonano <ciromattia@gmail.com>2013-03-12 16:47:11 +0100
commit7a7a2bc10b95419a48090af3c0648502aaa9b557 (patch)
tree14872753d68a3bc2d732981e64814dad8fb3df52 /kcc.py
parentBinary release (diff)
downloadkcc-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.py2
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':