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
committermeta-androcto <meta.androcto1@gmail.com>2019-07-23 08:17:16 +0300
commit3c492db845165de4690c652d23e9cf4686b95d9c (patch)
tree21e001252a352ad5b66d97a45fb10b27fc5c7519 /space_view3d_pie_menus
parentbe6738522d23ff5c8ab594a28f024232e11e507a (diff)
space_view3d_pie_menus: fix "Preferences" in Addon T67164
Diffstat (limited to 'space_view3d_pie_menus')
-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"