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>2010-04-02 01:44:56 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-04-02 01:44:56 +0400
commit9105f6f0bd7f3fe48b624bb516ce16641a115c15 (patch)
treec402417f1a7c281a4569a5ce63fd50e1be8fb9af /source/blender/editors/animation/fmodifier_ui.c
parent4924654b03cb034291d6f3d523548a5453710ee7 (diff)
rna naming, *_frame --> frame_*
Diffstat (limited to 'source/blender/editors/animation/fmodifier_ui.c')
-rw-r--r--source/blender/editors/animation/fmodifier_ui.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/editors/animation/fmodifier_ui.c b/source/blender/editors/animation/fmodifier_ui.c
index c6ee9e4a960..3bd8b50c889 100644
--- a/source/blender/editors/animation/fmodifier_ui.c
+++ b/source/blender/editors/animation/fmodifier_ui.c
@@ -572,19 +572,19 @@ static void draw_modifier__stepped(uiLayout *layout, ID *id, FModifier *fcm, sho
/* block 2: start range settings */
col= uiLayoutColumn(layout, 1);
- uiItemR(col, &ptr, "use_start_frame", 0, NULL, 0);
+ uiItemR(col, &ptr, "use_frame_start", 0, NULL, 0);
subcol = uiLayoutColumn(col, 1);
- uiLayoutSetActive(subcol, RNA_boolean_get(&ptr, "use_start_frame"));
- uiItemR(subcol, &ptr, "start_frame", 0, NULL, 0);
+ uiLayoutSetActive(subcol, RNA_boolean_get(&ptr, "use_frame_start"));
+ uiItemR(subcol, &ptr, "frame_start", 0, NULL, 0);
/* block 3: end range settings */
col= uiLayoutColumn(layout, 1);
- uiItemR(col, &ptr, "use_end_frame", 0, NULL, 0);
+ uiItemR(col, &ptr, "use_frame_end", 0, NULL, 0);
subcol = uiLayoutColumn(col, 1);
uiLayoutSetActive(subcol, RNA_boolean_get(&ptr, "use_end_frame"));
- uiItemR(subcol, &ptr, "end_frame", 0, NULL, 0);
+ uiItemR(subcol, &ptr, "frame_end", 0, NULL, 0);
}
/* --------------- */