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:
authorSybren A. Stüvel <sybren@blender.org>2020-09-04 15:13:34 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-09-04 15:13:34 +0300
commit9f5c30797d5acb12512dd16310cdcfa62b1d2c72 (patch)
tree70c650affe4cad5d249c23a6cedc795b2f0839f0 /source/blender/editors/interface/interface_handlers.c
parent570811f0efd4305540efd1841343a98273e37082 (diff)
Cleanup: typo fix in a comment
No functional changes.
Diffstat (limited to 'source/blender/editors/interface/interface_handlers.c')
-rw-r--r--source/blender/editors/interface/interface_handlers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/interface_handlers.c b/source/blender/editors/interface/interface_handlers.c
index 143ca6a0ef1..bf38f8bf12f 100644
--- a/source/blender/editors/interface/interface_handlers.c
+++ b/source/blender/editors/interface/interface_handlers.c
@@ -1888,7 +1888,7 @@ static bool ui_but_drag_init(bContext *C,
WM_gestures_remove(CTX_wm_window(C));
/* Clamp the maximum to half the UI unit size so a high user preference
- * doesn't require the user to drag more then half the default button height. */
+ * doesn't require the user to drag more than half the default button height. */
const int drag_threshold = min_ii(
WM_event_drag_threshold(event),
(int)((UI_UNIT_Y / 2) * ui_block_to_window_scale(data->region, but->block)));