Skip to content

Commit c72ad98

Browse files
committed
enable icons for gcp profile groups
1 parent 24e5331 commit c72ad98

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

app/gui/trayicon.py

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ def populate_context_menu(self, profile_list: List[ProfileGroup]):
5858
for profile_group in profile_list:
5959
if profile_group.type == "gcp":
6060
action = menu.addAction("[GCP] " + profile_group.name)
61+
action.setIconVisibleInMenu(True)
6162
action.triggered.connect(partial(self.gui.login_gcp,
6263
profile_group=profile_group))
6364
action.setIcon(self.assets.get_icon(style=ICON_STYLE_GCP, color_code=profile_group.color))

0 commit comments

Comments
 (0)