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:
authorHans Goudey <h.goudey@me.com>2020-12-23 21:13:44 +0300
committerHans Goudey <h.goudey@me.com>2020-12-23 21:13:44 +0300
commitc9efb5424079189951a0eebc968a33787878b039 (patch)
tree4740576815a140f630471b320c272436cf6312d2 /source/blender/editors/space_clip
parentd8dc4c5b32b4cb08e2d438d76f6a02e732d23220 (diff)
Cleanup: Clang format
Diffstat (limited to 'source/blender/editors/space_clip')
-rw-r--r--source/blender/editors/space_clip/clip_buttons.c56
1 files changed, 28 insertions, 28 deletions
diff --git a/source/blender/editors/space_clip/clip_buttons.c b/source/blender/editors/space_clip/clip_buttons.c
index fe03a37d4aa..78dc6eabbd2 100644
--- a/source/blender/editors/space_clip/clip_buttons.c
+++ b/source/blender/editors/space_clip/clip_buttons.c
@@ -124,7 +124,7 @@ void uiTemplateMovieClip(
}
PointerRNA clipptr = RNA_property_pointer_get(ptr, prop);
- MovieClip *clip = clipptr.data;
+ MovieClip *clip = clipptr.data;
uiLayoutSetContextPointer(layout, "edit_movieclip", &clipptr);
@@ -447,20 +447,20 @@ void uiTemplateMarker(uiLayout *layout,
}
uiBut *bt = uiDefIconButBitI(block,
- UI_BTYPE_TOGGLE_N,
- MARKER_DISABLED,
- 0,
- ICON_HIDE_OFF,
- 0,
- 0,
- UI_UNIT_X,
- UI_UNIT_Y,
- &cb->marker_flag,
- 0,
- 0,
- 1,
- 0,
- tip);
+ UI_BTYPE_TOGGLE_N,
+ MARKER_DISABLED,
+ 0,
+ ICON_HIDE_OFF,
+ 0,
+ 0,
+ UI_UNIT_X,
+ UI_UNIT_Y,
+ &cb->marker_flag,
+ 0,
+ 0,
+ 1,
+ 0,
+ tip);
UI_but_funcN_set(bt, marker_update_cb, cb, NULL);
UI_but_drawflag_enable(bt, UI_BUT_ICON_REVERSE);
}
@@ -561,19 +561,19 @@ void uiTemplateMarker(uiLayout *layout,
0,
"");
uiBut *bt = uiDefButF(block,
- UI_BTYPE_NUM,
- B_MARKER_POS,
- IFACE_("X:"),
- 0.5 * UI_UNIT_X,
- 9 * UI_UNIT_Y,
- 7.25 * UI_UNIT_X,
- UI_UNIT_Y,
- &cb->marker_pos[0],
- -10 * width,
- 10.0 * width,
- 0,
- 0,
- TIP_("X-position of marker at frame in screen coordinates"));
+ UI_BTYPE_NUM,
+ B_MARKER_POS,
+ IFACE_("X:"),
+ 0.5 * UI_UNIT_X,
+ 9 * UI_UNIT_Y,
+ 7.25 * UI_UNIT_X,
+ UI_UNIT_Y,
+ &cb->marker_pos[0],
+ -10 * width,
+ 10.0 * width,
+ 0,
+ 0,
+ TIP_("X-position of marker at frame in screen coordinates"));
UI_but_number_step_size_set(bt, step);
UI_but_number_precision_set(bt, digits);
bt = uiDefButF(block,