mirror of
https://github.com/ciromattia/kcc
synced 2025-12-19 12:41:47 +00:00
Icon!
This commit is contained in:
4
kcc.py
4
kcc.py
@@ -17,7 +17,7 @@
|
|||||||
# PERFORMANCE OF THIS SOFTWARE.
|
# PERFORMANCE OF THIS SOFTWARE.
|
||||||
#
|
#
|
||||||
__version__ = '2.6'
|
__version__ = '2.6'
|
||||||
__license__ = 'ISC'
|
__license__ = 'ISC'
|
||||||
__copyright__ = '2012-2013, Ciro Mattia Gonano <ciromattia@gmail.com>'
|
__copyright__ = '2012-2013, Ciro Mattia Gonano <ciromattia@gmail.com>'
|
||||||
__docformat__ = 'restructuredtext en'
|
__docformat__ = 'restructuredtext en'
|
||||||
|
|
||||||
@@ -31,6 +31,6 @@ if platform == 'darwin':
|
|||||||
root = Tk()
|
root = Tk()
|
||||||
root.resizable(width=FALSE, height=FALSE)
|
root.resizable(width=FALSE, height=FALSE)
|
||||||
root.config(padx=5, pady=5)
|
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.tkraise()
|
||||||
root.mainloop()
|
root.mainloop()
|
||||||
|
|||||||
@@ -255,4 +255,5 @@ class MainWindow:
|
|||||||
self.filelist = []
|
self.filelist = []
|
||||||
self.master = master
|
self.master = master
|
||||||
self.master.title(title)
|
self.master.title(title)
|
||||||
|
self.master.iconbitmap(default='resources/comic2ebook.ico')
|
||||||
self.initialize()
|
self.initialize()
|
||||||
|
|||||||
Reference in New Issue
Block a user