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>2019-04-17 19:50:53 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-17 19:50:53 +0300
commit3fe6eebf20e3ba459705e1a548fbab134409efad (patch)
treed0ef469c0cc3d068527553d9fa58592fa9531012 /source/blender/editors/space_action
parent81ce3801bf0a876b73b73817ca1a61b4e81b214d (diff)
Cleanup: line wrapping caused by comments
Diffstat (limited to 'source/blender/editors/space_action')
-rw-r--r--source/blender/editors/space_action/action_edit.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/space_action/action_edit.c b/source/blender/editors/space_action/action_edit.c
index 9ce709e1134..3444d71baff 100644
--- a/source/blender/editors/space_action/action_edit.c
+++ b/source/blender/editors/space_action/action_edit.c
@@ -680,7 +680,8 @@ void ACTION_OT_paste(wmOperatorType *ot)
static const EnumPropertyItem prop_actkeys_insertkey_types[] = {
{1, "ALL", 0, "All Channels", ""},
{2, "SEL", 0, "Only Selected Channels", ""},
- {3, "GROUP", 0, "In Active Group", ""}, /* XXX not in all cases */
+ /* XXX not in all cases. */
+ {3, "GROUP", 0, "In Active Group", ""},
{0, NULL, 0, NULL, NULL},
};