[Bf-blender-cvs] [e69217b2834] master: UI: Improve tooltip for continuous grab

Julian Eisel noreply at git.blender.org
Wed Feb 3 15:11:50 CET 2021


Commit: e69217b2834adef47224bcdd07aff32378bd45d2
Author: Julian Eisel
Date:   Wed Feb 3 15:04:06 2021 +0100
Branches: master
https://developer.blender.org/rBe69217b2834adef47224bcdd07aff32378bd45d2

UI: Improve tooltip for continuous grab

Attempt to explain the feature better follow a better writing style.

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

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 8d4578067f9..952054a6c53 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -5739,10 +5739,11 @@ static void rna_def_userdef_input(BlenderRNA *brna)
 
   prop = RNA_def_property(srna, "use_mouse_continuous", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "uiflag", USER_CONTINUOUS_MOUSE);
-  RNA_def_property_ui_text(prop,
-                           "Continuous Grab",
-                           "Allow moving the mouse outside the view on some manipulations "
-                           "(transform, ui control drag)");
+  RNA_def_property_ui_text(
+      prop,
+      "Continuous Grab",
+      "Let the mouse wrap around the view boundaries so mouse movements are not limited by the "
+      "screen size (used by transform, dragging of UI controls, etc.)");
 
   prop = RNA_def_property(srna, "use_drag_immediately", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "flag", USER_RELEASECONFIRM);



More information about the Bf-blender-cvs mailing list