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:
authorYevgeny Makarov <jenkm>2020-12-13 23:28:01 +0300
committerHarley Acheson <harley.acheson@gmail.com>2020-12-13 23:30:03 +0300
commitbec583951d736776d2096368ef8d2b764287ac11 (patch)
tree80dabe1e74fa89f5ccaa1bc5400c344f052c518e /source/blender/editors/space_text/text_ops.c
parent9c0df8e27533657f49919e45d46c85c847048d8f (diff)
UI: Remove Unused 'U.wheellinescroll' Property
Remove 'U.wheellinescroll' preference, currently hidden and unused. Differential Revision: https://developer.blender.org/D9616 Reviewed by Brecht Van Lommel
Diffstat (limited to 'source/blender/editors/space_text/text_ops.c')
-rw-r--r--source/blender/editors/space_text/text_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_text/text_ops.c b/source/blender/editors/space_text/text_ops.c
index f8b7c62686f..932bacfb8a0 100644
--- a/source/blender/editors/space_text/text_ops.c
+++ b/source/blender/editors/space_text/text_ops.c
@@ -2588,7 +2588,7 @@ static int text_scroll_exec(bContext *C, wmOperator *op)
return OPERATOR_CANCELLED;
}
- txt_screen_skip(st, region, lines * U.wheellinescroll);
+ txt_screen_skip(st, region, lines * 3);
ED_area_tag_redraw(CTX_wm_area(C));