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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-01-24 20:49:43 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-01-24 20:50:15 +0300
commit1e371d6d45c739b19527a61c56cd6f2280dd4a94 (patch)
tree8d07851b99a53cdd3deee5baf4ef31085793f267
parentaf346be92b0ae96e494e172c0d4a7b9cf51d8f33 (diff)
Fix T60826: shade pie menu missing items.
-rw-r--r--pie_menus_official/pie_shade_of.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pie_menus_official/pie_shade_of.py b/pie_menus_official/pie_shade_of.py
index d97c8725..e637a490 100644
--- a/pie_menus_official/pie_shade_of.py
+++ b/pie_menus_official/pie_shade_of.py
@@ -24,7 +24,7 @@ class VIEW3D_PIE_shade_of(Menu):
layout = self.layout
pie = layout.menu_pie()
- pie.prop(context.space_data, "viewport_shade", expand=True)
+ pie.prop(context.space_data.shading, "type", expand=True)
if context.active_object:
if(context.mode == 'EDIT_MESH'):