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:
authorJulian Eisel <julian@blender.org>2021-02-03 17:04:06 +0300
committerJulian Eisel <julian@blender.org>2021-02-03 17:07:37 +0300
commite69217b2834adef47224bcdd07aff32378bd45d2 (patch)
tree24c7dee5dc100bddf4bdfa621432874b5852bc8f
parentc9d6737e3e9a00bc297511af4a4d1cf2ed6f8cce (diff)
UI: Improve tooltip for continuous grab
Attempt to explain the feature better follow a better writing style.
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c9
1 files changed, 5 insertions, 4 deletions
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);