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 <campbell@blender.org>2022-03-04 05:31:16 +0300
committerCampbell Barton <campbell@blender.org>2022-03-04 05:31:16 +0300
commit0212c423bfaa4ccb82dca6259df084960f59944f (patch)
treeb75fe7b2075cfdca277eb5dfe3f1489b7cab0f32 /source/blender/windowmanager/gizmo
parent0a4fdcbb5fe3b33a276d2ab54a1e68db0fe24fd4 (diff)
Cleanup: remove outdated references to tweak
Diffstat (limited to 'source/blender/windowmanager/gizmo')
-rw-r--r--source/blender/windowmanager/gizmo/WM_gizmo_types.h2
-rw-r--r--source/blender/windowmanager/gizmo/intern/wm_gizmo_group.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/windowmanager/gizmo/WM_gizmo_types.h b/source/blender/windowmanager/gizmo/WM_gizmo_types.h
index 03fafdd7d74..c69658c516c 100644
--- a/source/blender/windowmanager/gizmo/WM_gizmo_types.h
+++ b/source/blender/windowmanager/gizmo/WM_gizmo_types.h
@@ -136,7 +136,7 @@ typedef enum eWM_GizmoFlagGroupTypeFlag {
*
* The result for the user is tweak events delay the gizmo from flashing under the users cursor,
* for selection operations. This means gizmos that use this check don't interfere
- * with click drag events by popping up under the cursor and catching the tweak event.
+ * with click-drag events by popping up under the cursor and catching the drag-drag event.
*/
WM_GIZMOGROUPTYPE_DELAY_REFRESH_FOR_TWEAK = (1 << 9),
diff --git a/source/blender/windowmanager/gizmo/intern/wm_gizmo_group.c b/source/blender/windowmanager/gizmo/intern/wm_gizmo_group.c
index 2971cdf40c3..b3ef9b27667 100644
--- a/source/blender/windowmanager/gizmo/intern/wm_gizmo_group.c
+++ b/source/blender/windowmanager/gizmo/intern/wm_gizmo_group.c
@@ -607,7 +607,7 @@ void GIZMOGROUP_OT_gizmo_tweak(wmOperatorType *ot)
ot->invoke = gizmo_tweak_invoke;
ot->modal = gizmo_tweak_modal;
- /* TODO(campbell): This causes problems tweaking settings for operators,
+ /* TODO(@campbellbarton): This causes problems tweaking settings for operators,
* need to find a way to support this. */
#if 0
ot->flag = OPTYPE_UNDO;