From 473078593a315027e5c17595da2b70841adeb50e Mon Sep 17 00:00:00 2001 From: hir-lol Date: Wed, 18 Mar 2026 01:40:09 +0300 Subject: [PATCH] Merge pull request #244 from hir-lol/main --- windows.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/windows.py b/windows.py index 64e581b..8e8ed5d 100644 --- a/windows.py +++ b/windows.py @@ -314,6 +314,8 @@ def _edit_config_dialog(): root.title("TG WS Proxy — Настройки") root.resizable(False, False) root.attributes("-topmost", True) + icon_path = str(Path(__file__).parent / "icon.ico") + root.iconbitmap(icon_path) TG_BLUE = "#3390ec" TG_BLUE_HOVER = "#2b7cd4" @@ -502,6 +504,8 @@ def _show_first_run(): root.title("TG WS Proxy") root.resizable(False, False) root.attributes("-topmost", True) + icon_path = str(Path(__file__).parent / "icon.ico") + root.iconbitmap(icon_path) w, h = 520, 440 sw = root.winfo_screenwidth()