[Bf-blender-cvs] [dacc539f573] blender2.8: Fix incorrect icon for UV selection sync.

William Reynish noreply at git.blender.org
Tue Oct 16 16:43:11 CEST 2018


Commit: dacc539f5737a04b99428e0fa1f1778ed5a74013
Author: William Reynish
Date:   Tue Oct 16 14:57:30 2018 +0200
Branches: blender2.8
https://developer.blender.org/rBdacc539f5737a04b99428e0fa1f1778ed5a74013

Fix incorrect icon for UV selection sync.

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

M	source/blender/makesrna/intern/rna_scene.c

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

diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 199f74c709d..e0d13354445 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -2617,7 +2617,7 @@ static void rna_def_tool_settings(BlenderRNA  *brna)
 	prop = RNA_def_property(srna, "use_uv_select_sync", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "uv_flag", UV_SYNC_SELECTION);
 	RNA_def_property_ui_text(prop, "UV Sync Selection", "Keep UV and edit mode mesh selection in sync");
-	RNA_def_property_ui_icon(prop, ICON_EDIT, 0);
+	RNA_def_property_ui_icon(prop, ICON_UV_SYNC_SELECT, 0);
 	RNA_def_property_update(prop, NC_SPACE | ND_SPACE_IMAGE, NULL);
 
 	prop = RNA_def_property(srna, "show_uv_local_view", PROP_BOOLEAN, PROP_NONE);



More information about the Bf-blender-cvs mailing list