apply all rna naming changes for rna_space.c

This commit is contained in:
Campbell Barton
2010-08-17 07:49:53 +00:00
parent 40bf37e3b6
commit b9d99b9c5b
22 changed files with 196 additions and 194 deletions

View File

@@ -143,12 +143,12 @@ class SEQUENCER_MT_view(bpy.types.Menu):
layout.operator("sequencer.view_selected")
layout.prop(st, "draw_frames")
layout.prop(st, "show_cframe_indicator")
layout.prop(st, "show_frames")
layout.prop(st, "show_frame_indicator")
if st.display_mode == 'IMAGE':
layout.prop(st, "draw_safe_margin")
layout.prop(st, "show_safe_margin")
if st.display_mode == 'WAVEFORM':
layout.prop(st, "separate_color_preview")
layout.prop(st, "show_separate_color")
layout.separator()
layout.prop(st, "use_marker_sync")
@@ -787,9 +787,9 @@ class SEQUENCER_PT_view(SequencerButtonsPanel_Output, bpy.types.Panel):
col = layout.column()
if st.display_mode == 'IMAGE':
col.prop(st, "draw_overexposed") # text="Zebra"
col.prop(st, "draw_safe_margin")
col.prop(st, "show_safe_margin")
if st.display_mode == 'WAVEFORM':
col.prop(st, "separate_color_preview")
col.prop(st, "show_separate_color")
col.prop(st, "proxy_render_size")
def register():