Skip to content
This repository was archived by the owner on Apr 8, 2025. It is now read-only.

Commit f584ff8

Browse files
committed
fix: fix creation of groupless icons
1 parent 8f33dda commit f584ff8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/progman/core/state.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ def add_group(self, group: Group) -> None:
3939
def add_shortcut(self, new_item: Shortcut) -> None:
4040
self.shortcuts.append(new_item)
4141
for tag in new_item.tags:
42+
if tag == Tags.NEW.value:
43+
continue
4244
group = self.group_windows[tag]
4345
group.add_icon(new_item)
4446
for tag in new_item.tags:

0 commit comments

Comments
 (0)