[Bf-blender-cvs] [97f7f5fdbbb] master: Fix T69384: Noise Depth widgets steps set to 0

Lucas Boutrot noreply at git.blender.org
Tue Sep 3 13:46:06 CEST 2019


Commit: 97f7f5fdbbba7855431b86a5038402d83b9bdcd8
Author: Lucas Boutrot
Date:   Tue Sep 3 13:28:59 2019 +0200
Branches: master
https://developer.blender.org/rB97f7f5fdbbba7855431b86a5038402d83b9bdcd8

Fix T69384: Noise Depth widgets steps set to 0

Reviewed By: brecht, lichtwerk

Maniphest Tasks: T69384

Differential Revision: https://developer.blender.org/D5652

===================================================================

M	release/datafiles/locale
M	release/scripts/addons
M	release/scripts/addons_contrib
M	source/blender/makesrna/intern/rna_texture.c
M	source/tools

===================================================================

diff --git a/release/datafiles/locale b/release/datafiles/locale
index e7cd12454a2..6a6b84fd505 160000
--- a/release/datafiles/locale
+++ b/release/datafiles/locale
@@ -1 +1 @@
-Subproject commit e7cd12454a2fe775361012cbc176fb9c370b6abb
+Subproject commit 6a6b84fd50538a65276c729b5d396be615bc79f2
diff --git a/release/scripts/addons b/release/scripts/addons
index db4f7e2dc66..8d11c9e8289 160000
--- a/release/scripts/addons
+++ b/release/scripts/addons
@@ -1 +1 @@
-Subproject commit db4f7e2dc66d437b205f8097c2bdf9097b5c8834
+Subproject commit 8d11c9e82893e231b2abc093d815deb79866e03b
diff --git a/release/scripts/addons_contrib b/release/scripts/addons_contrib
index c6429b8c79e..2769f4b5f5f 160000
--- a/release/scripts/addons_contrib
+++ b/release/scripts/addons_contrib
@@ -1 +1 @@
-Subproject commit c6429b8c79e877ac40fa900c589be2dc6aa4f512
+Subproject commit 2769f4b5f5f4769cf9115fa7cdd1287540a795bf
diff --git a/source/blender/makesrna/intern/rna_texture.c b/source/blender/makesrna/intern/rna_texture.c
index 2ab08c82b63..2015356d071 100644
--- a/source/blender/makesrna/intern/rna_texture.c
+++ b/source/blender/makesrna/intern/rna_texture.c
@@ -835,7 +835,7 @@ static void rna_def_texture_clouds(BlenderRNA *brna)
   prop = RNA_def_property(srna, "noise_depth", PROP_INT, PROP_NONE);
   RNA_def_property_int_sdna(prop, NULL, "noisedepth");
   RNA_def_property_range(prop, 0, 30);
-  RNA_def_property_ui_range(prop, 0, 24, 0, 2);
+  RNA_def_property_ui_range(prop, 0, 24, 1, 2);
   RNA_def_property_ui_text(prop, "Noise Depth", "Depth of the cloud calculation");
   RNA_def_property_update(prop, 0, "rna_Texture_nodes_update");
 
@@ -974,7 +974,7 @@ static void rna_def_texture_marble(BlenderRNA *brna)
   prop = RNA_def_property(srna, "noise_depth", PROP_INT, PROP_NONE);
   RNA_def_property_int_sdna(prop, NULL, "noisedepth");
   RNA_def_property_range(prop, 0, 30);
-  RNA_def_property_ui_range(prop, 0, 24, 0, 2);
+  RNA_def_property_ui_range(prop, 0, 24, 1, 2);
   RNA_def_property_ui_text(prop, "Noise Depth", "Depth of the cloud calculation");
   RNA_def_property_update(prop, 0, "rna_Texture_update");
 
@@ -1028,7 +1028,7 @@ static void rna_def_texture_magic(BlenderRNA *brna)
   prop = RNA_def_property(srna, "noise_depth", PROP_INT, PROP_NONE);
   RNA_def_property_int_sdna(prop, NULL, "noisedepth");
   RNA_def_property_range(prop, 0, 30);
-  RNA_def_property_ui_range(prop, 0, 24, 0, 2);
+  RNA_def_property_ui_range(prop, 0, 24, 1, 2);
   RNA_def_property_ui_text(prop, "Noise Depth", "Depth of the noise");
   RNA_def_property_update(prop, 0, "rna_Texture_update");
 }
diff --git a/source/tools b/source/tools
index 2550eda6bce..8598818108d 160000
--- a/source/tools
+++ b/source/tools
@@ -1 +1 @@
-Subproject commit 2550eda6bcefad45289acbb4b8e52107e742ce1f
+Subproject commit 8598818108ddaf35e30d2a2dbd408ad371e41eb5



More information about the Bf-blender-cvs mailing list