From e69217b2834adef47224bcdd07aff32378bd45d2 Mon Sep 17 00:00:00 2001 From: Julian Eisel Date: Wed, 3 Feb 2021 15:04:06 +0100 Subject: UI: Improve tooltip for continuous grab Attempt to explain the feature better follow a better writing style. --- source/blender/makesrna/intern/rna_userdef.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'source/blender') 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); -- cgit v1.2.3