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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Foucault <foucault.clem@gmail.com>2017-02-03 14:47:45 +0300
committerClément Foucault <foucault.clem@gmail.com>2017-02-03 15:33:59 +0300
commit8a22429db20bc1e0317f9fcda6643a2e2e501663 (patch)
tree2fd15586952329c127ed6ab6a56b8a9fb9969bfe
parenta8ce1c98fe66bce5a65a5e470bce27977898bc4d (diff)
Change settings order
-rw-r--r--release/scripts/startup/bl_ui/properties_collection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_collection.py b/release/scripts/startup/bl_ui/properties_collection.py
index 018a7207373..e9651ba536c 100644
--- a/release/scripts/startup/bl_ui/properties_collection.py
+++ b/release/scripts/startup/bl_ui/properties_collection.py
@@ -91,8 +91,8 @@ class COLLECTION_PT_clay_settings(CollectionButtonsPanel, Panel):
settings = collection.get_engine_settings()
col = layout.column()
- col.template_icon_view(settings, "matcap_icon")
col.prop(settings, "type")
+ col.template_icon_view(settings, "matcap_icon")
col.prop(settings, "matcap_rotation")
col.prop(settings, "matcap_hue")
col.prop(settings, "matcap_saturation")