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:
authorNicholas Rishel <nicholas_rishel>2020-10-01 13:02:21 +0300
committerBrecht Van Lommel <brecht@blender.org>2020-10-01 13:05:36 +0300
commitf18725662474e921fb31f2c8f80d1dc2e27ed065 (patch)
tree20a519c0f8619e6d091cab842b586b0fd57f477b /source/blender/makesrna
parentbcc6baec245a02a14392ae7ad22ca7c33fedef82 (diff)
Windows: workaround to make Windows Ink tablet API work
Now Wintab is not initialized when starting Blender with the tablet API preference set to native, since that disables Windows Ink. Note that changing the tablet API requires restarting Blender for changes to take effect. This serves as a stopgap to allow use of Windows Ink until runtime API switching is merged. Differential Revision: https://developer.blender.org/D9051
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index 07bf0d12092..9477f99e826 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -5779,8 +5779,10 @@ 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");
+ 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_update(prop, 0, "rna_userdef_tablet_api_update");
# ifdef WITH_INPUT_NDOF