From c1529aba40d359d8e67419565ed6fc230befab05 Mon Sep 17 00:00:00 2001 From: Russell Johnson <47639332+Russ4262@users.noreply.github.com> Date: Wed, 9 Mar 2022 20:58:43 -0600 Subject: [PATCH] Path: Fix enumeration dictionary error This commit corrects an incorrect dictionary key in the enumeration dictionary updated with recent translation fixes. --- src/Mod/Path/PathScripts/PathDressupRampEntry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Path/PathScripts/PathDressupRampEntry.py b/src/Mod/Path/PathScripts/PathDressupRampEntry.py index 962b49ee10..0e85a2a995 100644 --- a/src/Mod/Path/PathScripts/PathDressupRampEntry.py +++ b/src/Mod/Path/PathScripts/PathDressupRampEntry.py @@ -129,7 +129,7 @@ class ObjectDressup: """ enums = { - "Object": [ + "Method": [ (translate("Path_DressupRampEntry", "RampMethod1"), "RampMethod1"), (translate("Path_DressupRampEntry", "RampMethod2"), "RampMethod2"), (translate("Path_DressupRampEntry", "RampMethod3"), "RampMethod3"),