From 1984145043a0024525e3b7c9bf36f2acdb68864c Mon Sep 17 00:00:00 2001 From: lm Date: Sun, 19 Oct 2025 18:40:38 +0200 Subject: [PATCH] Force borderless window to appear in taskbar --- app/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/app.py b/app/app.py index fb96a34..53865e7 100644 --- a/app/app.py +++ b/app/app.py @@ -125,6 +125,7 @@ class ICRAApp( 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER | SWP_FRAMECHANGED, ) + user32.ShowWindow(hwnd, 5) # SW_SHOW app_id = ctypes.c_wchar_p("ICRA.App") shell32.SetCurrentProcessExplicitAppUserModelID(app_id)