1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-13 09:46:25 +00:00
This commit is contained in:
Ciro Mattia Gonano
2013-03-06 23:22:18 +01:00
parent 36516fd594
commit 74f2250952
2 changed files with 3 additions and 2 deletions

4
kcc.py
View File

@@ -17,7 +17,7 @@
# PERFORMANCE OF THIS SOFTWARE.
#
__version__ = '2.6'
__license__ = 'ISC'
__license__ = 'ISC'
__copyright__ = '2012-2013, Ciro Mattia Gonano <ciromattia@gmail.com>'
__docformat__ = 'restructuredtext en'
@@ -31,6 +31,6 @@ if platform == 'darwin':
root = Tk()
root.resizable(width=FALSE, height=FALSE)
root.config(padx=5, pady=5)
gui.MainWindow(master=root,title="Kindle Comic Converter v" + __version__)
gui.MainWindow(master=root, title="Kindle Comic Converter v" + __version__)
root.tkraise()
root.mainloop()

View File

@@ -255,4 +255,5 @@ class MainWindow:
self.filelist = []
self.master = master
self.master.title(title)
self.master.iconbitmap(default='resources/comic2ebook.ico')
self.initialize()