From 2801f0722156747335b7b6a4074bf24c04dd28f6 Mon Sep 17 00:00:00 2001 From: wmayer Date: Mon, 27 Mar 2023 11:26:55 +0200 Subject: [PATCH] Material: fix icon path --- src/Mod/Material/MaterialEditor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Material/MaterialEditor.py b/src/Mod/Material/MaterialEditor.py index 92e0a1d005..5d1d645312 100644 --- a/src/Mod/Material/MaterialEditor.py +++ b/src/Mod/Material/MaterialEditor.py @@ -59,7 +59,7 @@ class MaterialEditor: self.initialIndex = -1 self.card_path = card_path filePath = os.path.dirname(__file__) + os.sep - self.iconPath = (filePath + "Resources" + os.sep + "Icons" + os.sep) + self.iconPath = (filePath + "Resources" + os.sep + "icons" + os.sep) # load the UI file from the same directory as this script self.widget = FreeCADGui.PySideUic.loadUi(filePath + "materials-editor.ui")