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:
authorCampbell Barton <ideasman42@gmail.com>2021-06-17 04:19:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-06-17 07:43:25 +0300
commit286bd874453879e712d147708b7b508c98319056 (patch)
tree33876e0ead8fdc958049464f4e0815497d36d890 /source/blender/editors/interface
parenteb85de027cb46513b0ba78445c359ddd17a4a53a (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/editors/interface')
-rw-r--r--source/blender/editors/interface/view2d_edge_pan.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/interface/view2d_edge_pan.c b/source/blender/editors/interface/view2d_edge_pan.c
index 38364a687fd..ca32a754f1d 100644
--- a/source/blender/editors/interface/view2d_edge_pan.c
+++ b/source/blender/editors/interface/view2d_edge_pan.c
@@ -42,7 +42,7 @@
#include "WM_types.h"
/* -------------------------------------------------------------------- */
-/** \name Edge Pan Operator Utilties
+/** \name Edge Pan Operator Utilities
* \{ */
bool UI_view2d_edge_pan_poll(bContext *C)
@@ -250,13 +250,13 @@ void UI_view2d_edge_pan_apply(bContext *C, View2DEdgePanData *vpd, int x, int y)
}
vpd->edge_pan_last_time = current_time;
- /* Pan, clamping inside the regions's total bounds. */
+ /* Pan, clamping inside the regions total bounds. */
edge_pan_apply_delta(C, vpd, dx, dy);
}
void UI_view2d_edge_pan_apply_event(bContext *C, View2DEdgePanData *vpd, const wmEvent *event)
{
- /* Only mousemove events matter here, ignore others. */
+ /* Only mouse-move events matter here, ignore others. */
if (event->type != MOUSEMOVE) {
return;
}