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:
authorJoshua Leung <aligorith@gmail.com>2009-06-20 07:58:25 +0400
committerJoshua Leung <aligorith@gmail.com>2009-06-20 07:58:25 +0400
commit6393e9b3ca7e40e95830d009020b0f106c00b529 (patch)
tree4cd2605de62e5c3ab785129403f9226c6100507c /source/blender/editors/space_nla/nla_select.c
parent12bf10be020de1f4031889f78552c77121da3194 (diff)
NLA SoC: Fixes for problems arising from the merge
Diffstat (limited to 'source/blender/editors/space_nla/nla_select.c')
-rw-r--r--source/blender/editors/space_nla/nla_select.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/space_nla/nla_select.c b/source/blender/editors/space_nla/nla_select.c
index b850ec76f82..ee4ed01ab81 100644
--- a/source/blender/editors/space_nla/nla_select.c
+++ b/source/blender/editors/space_nla/nla_select.c
@@ -361,10 +361,10 @@ void NLAEDIT_OT_select_border(wmOperatorType *ot)
/* defines for left-right select tool */
static EnumPropertyItem prop_nlaedit_leftright_select_types[] = {
- {NLAEDIT_LRSEL_TEST, "CHECK", "Check if Select Left or Right", ""},
- {NLAEDIT_LRSEL_NONE, "OFF", "Don't select", ""},
- {NLAEDIT_LRSEL_LEFT, "LEFT", "Before current frame", ""},
- {NLAEDIT_LRSEL_RIGHT, "RIGHT", "After current frame", ""},
+ {NLAEDIT_LRSEL_TEST, "CHECK", 0, "Check if Select Left or Right", ""},
+ {NLAEDIT_LRSEL_NONE, "OFF", 0, "Don't select", ""},
+ {NLAEDIT_LRSEL_LEFT, "LEFT", 0, "Before current frame", ""},
+ {NLAEDIT_LRSEL_RIGHT, "RIGHT", 0, "After current frame", ""},
{0, NULL, NULL, NULL}
};