Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormeta-androcto <meta.androcto1@gmail.com>2019-07-23 08:17:16 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-07-24 17:19:59 +0300
commitb547c48015ab77e9cb4cdcc665ee1534befa6922 (patch)
tree2c5fa05dd5c33669224738f9556e7c6402a6896a
parent979298511916b25ec97bb22feb1c06cc9fbc86dd (diff)
space_view3d_pie_menus: fix "Preferences" in Addon T67164
-rw-r--r--space_view3d_pie_menus/pie_editor_switch_menu.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/space_view3d_pie_menus/pie_editor_switch_menu.py b/space_view3d_pie_menus/pie_editor_switch_menu.py
index 6fb2df28..bdff15a0 100644
--- a/space_view3d_pie_menus/pie_editor_switch_menu.py
+++ b/space_view3d_pie_menus/pie_editor_switch_menu.py
@@ -94,8 +94,8 @@ class PIE_MT_AreaTypePieOther(Menu):
def draw(self, context):
self.layout.operator(PIE_OT_SetAreaType.bl_idname, text="File Browser", icon="FILEBROWSER").types = "FILE_BROWSER"
self.layout.operator(PIE_OT_SetAreaType.bl_idname, text="Python Console", icon="CONSOLE").types = "CONSOLE"
- self.layout.operator(PIE_OT_SetAreaType.bl_idname, text="User Preferences",
- icon="PREFERENCES").types = "USER_PREFERENCES"
+ self.layout.operator(PIE_OT_SetAreaType.bl_idname, text="Preferences",
+ icon="PREFERENCES").types = "PREFERENCES"
self.layout.operator(PIE_OT_SetAreaType.bl_idname, text="Info", icon="INFO").types = "INFO"