icon in first window
This commit is contained in:
parent
76ca43703b
commit
500a76d5f4
|
|
@ -504,6 +504,8 @@ def _show_first_run():
|
||||||
root.title("TG WS Proxy")
|
root.title("TG WS Proxy")
|
||||||
root.resizable(False, False)
|
root.resizable(False, False)
|
||||||
root.attributes("-topmost", True)
|
root.attributes("-topmost", True)
|
||||||
|
icon_path = str(Path(__file__).parent / "icon.ico")
|
||||||
|
root.iconbitmap(icon_path)
|
||||||
|
|
||||||
w, h = 520, 440
|
w, h = 520, 440
|
||||||
sw = root.winfo_screenwidth()
|
sw = root.winfo_screenwidth()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue