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:
authorWilliam Reynish <billrey@me.com>2019-05-24 15:23:50 +0300
committerWilliam Reynish <billrey@me.com>2019-05-24 15:23:50 +0300
commit946217e503f280740acd30a32febbb6a3ded7fce (patch)
treeed35d88a9931e4530cffe461819961cfd705a277 /release/scripts/startup/bl_ui/space_sequencer.py
parent75ac3560957cd034eb2911d89ea2807e5095d6a0 (diff)
UI: Sequencer panel names
Change names again, to be more descriptive Data > Info Info > Timecodes
Diffstat (limited to 'release/scripts/startup/bl_ui/space_sequencer.py')
-rw-r--r--release/scripts/startup/bl_ui/space_sequencer.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/release/scripts/startup/bl_ui/space_sequencer.py b/release/scripts/startup/bl_ui/space_sequencer.py
index 134995bf469..442b14fab4b 100644
--- a/release/scripts/startup/bl_ui/space_sequencer.py
+++ b/release/scripts/startup/bl_ui/space_sequencer.py
@@ -808,8 +808,8 @@ class SequencerButtonsPanel_Output:
return cls.has_preview(context)
-class SEQUENCER_PT_data(SequencerButtonsPanel, Panel):
- bl_label = "Data"
+class SEQUENCER_PT_info(SequencerButtonsPanel, Panel):
+ bl_label = "Info"
bl_options = {'DEFAULT_CLOSED'}
bl_category = "Strip"
@@ -1048,9 +1048,9 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, Panel):
row.prop(strip, "factor", slider=True)
-class SEQUENCER_PT_data_input(SequencerButtonsPanel, Panel):
+class SEQUENCER_PT_info_input(SequencerButtonsPanel, Panel):
bl_label = "Input"
- bl_parent_id = "SEQUENCER_PT_data"
+ bl_parent_id = "SEQUENCER_PT_info"
bl_options = {'DEFAULT_CLOSED'}
bl_category = "Strip"
@@ -1265,10 +1265,10 @@ class SEQUENCER_PT_mask(SequencerButtonsPanel, Panel):
layout.label(text=iface_("Original frame range: %d-%d (%d)") % (sta, end, end - sta + 1), translate=False)
-class SEQUENCER_PT_data_info(SequencerButtonsPanel, Panel):
- bl_label = "Info"
+class SEQUENCER_PT_info_timecodes(SequencerButtonsPanel, Panel):
+ bl_label = "Timecodes"
bl_category = "Strip"
- bl_parent_id = "SEQUENCER_PT_data"
+ bl_parent_id = "SEQUENCER_PT_info"
@classmethod
def poll(cls, context):
@@ -1959,9 +1959,9 @@ classes = (
SEQUENCER_PT_adjust_color,
SEQUENCER_PT_adjust_sound,
- SEQUENCER_PT_data,
- SEQUENCER_PT_data_input,
- SEQUENCER_PT_data_info,
+ SEQUENCER_PT_info,
+ SEQUENCER_PT_info_input,
+ SEQUENCER_PT_info_timecodes,
SEQUENCER_PT_effect,
SEQUENCER_PT_scene,