mirror of
https://github.com/ciromattia/kcc
synced 2025-12-13 17:56:30 +00:00
Icon!
This commit is contained in:
2
kcc.py
2
kcc.py
@@ -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