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:
Diffstat (limited to 'source/blender/windowmanager/gizmo/intern/wm_gizmo_group.c')
-rw-r--r--source/blender/windowmanager/gizmo/intern/wm_gizmo_group.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/windowmanager/gizmo/intern/wm_gizmo_group.c b/source/blender/windowmanager/gizmo/intern/wm_gizmo_group.c
index a5e51d0d395..e9a1b5e3df0 100644
--- a/source/blender/windowmanager/gizmo/intern/wm_gizmo_group.c
+++ b/source/blender/windowmanager/gizmo/intern/wm_gizmo_group.c
@@ -344,6 +344,7 @@ bool wm_gizmogroup_is_any_selected(const wmGizmoGroup *gzgroup)
/** \} */
+/* -------------------------------------------------------------------- */
/** \name Gizmo operators
*
* Basic operators for gizmo interaction with user configurable keymaps.
@@ -444,7 +445,7 @@ static bool gizmo_tweak_start_and_finish(
wmWindowManager *wm = CTX_wm_manager(C);
wmOperator *op = WM_operator_last_redo(C);
- /* We may want to enable this, for now the gizmo can manage it's own properties. */
+ /* We may want to enable this, for now the gizmo can manage its own properties. */
#if 0
IDP_MergeGroup(gzop->ptr.data, op->properties, false);
#endif
@@ -633,7 +634,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(campbell): This causes problems tweaking settings for operators,
* need to find a way to support this. */
#if 0
ot->flag = OPTYPE_UNDO;