From f2390a7c0602818ecb2c83813382125cc6ca2f07 Mon Sep 17 00:00:00 2001 From: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> Date: Tue, 22 Apr 2025 17:00:08 +0200 Subject: [PATCH] use correct color value --- client/ayon_core/tools/launcher/ui/actions_widget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ayon_core/tools/launcher/ui/actions_widget.py b/client/ayon_core/tools/launcher/ui/actions_widget.py index fe946c6079..549f54fc52 100644 --- a/client/ayon_core/tools/launcher/ui/actions_widget.py +++ b/client/ayon_core/tools/launcher/ui/actions_widget.py @@ -149,7 +149,7 @@ class ActionsQtModel(QtGui.QStandardItemModel): if "name" not in icon_def: icon_def = transparent_icon.copy() elif not icon_def.get("color"): - icon_def["color"] = "#f5f5f5" + icon_def["color"] = "#f4f5f5" try: icon = get_qt_icon(icon_def)