We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 273c0b0 + 5d11af4 commit 0779c6dCopy full SHA for 0779c6d
1 file changed
activity_browser/__main__.py
@@ -8,6 +8,11 @@
8
from qtpy import QtWidgets, QtCore, QtGui
9
from qtpy.QtCore import Qt
10
11
+# this will enable the AB icon to show in the taskbar under Windows 11 (instead of the default python icon)
12
+if sys.platform == "win32":
13
+ import ctypes
14
+ ctypes.windll.shell32.SetCurrentProcessExplicitAppUserModelID("activity.browser.1")
15
+
16
from activity_browser import application
17
from activity_browser.ui import icons
18
0 commit comments