[Bf-blender-cvs] [632b345d35e] master: Update tooltip, Tablet API can now be changed at runtime.

Nicholas Rishel noreply at git.blender.org
Sat Oct 31 00:32:30 CET 2020


Commit: 632b345d35e87872ed7c0ff4d54d54cf5fa4f266
Author: Nicholas Rishel
Date:   Fri Oct 2 13:29:17 2020 -0700
Branches: master
https://developer.blender.org/rB632b345d35e87872ed7c0ff4d54d54cf5fa4f266

Update tooltip, Tablet API can now be changed at runtime.

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

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

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

diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index d4ba7e570c6..e6821d6e4a7 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -5784,10 +5784,8 @@ static void rna_def_userdef_input(BlenderRNA *brna)
 
   prop = RNA_def_property(srna, "tablet_api", PROP_ENUM, PROP_NONE);
   RNA_def_property_enum_items(prop, tablet_api);
-  RNA_def_property_ui_text(prop,
-                           "Tablet API",
-                           "Select the tablet API to use for pressure sensitivity (restart "
-                           "Blender for changes to take effect)");
+  RNA_def_property_ui_text(
+      prop, "Tablet API", "Select the tablet API to use for pressure sensitivity");
   RNA_def_property_update(prop, 0, "rna_userdef_tablet_api_update");
 
 #  ifdef WITH_INPUT_NDOF



More information about the Bf-blender-cvs mailing list