UI Translations: fix add-on translation export
[blender-addons.git] / power_sequencer / addon_properties.py
blob671980c1cf424cca689c9c68f9c51861d667d973
1 # SPDX-FileCopyrightText: 2016-2020 by Nathan Lovato, Daniel Oakey, Razvan Radulescu, and contributors
3 # SPDX-License-Identifier: GPL-3.0-or-later
5 import bpy
8 class PowerSequencerProperties(bpy.types.PropertyGroup):
9 playback_speed: bpy.props.EnumProperty(
10 items=[
11 ("NORMAL", "Normal (1x)", ""),
12 ("DOUBLE", "Double (2x)", ""),
13 ("TRIPLE", "Triple (3x)", ""),
15 name="Playback",
16 default="NORMAL",
19 active_tab: bpy.props.StringProperty(
20 name="Active Tab", description="The name of the active tab in the UI", default="Sequencer"
24 def register_properties():
25 bpy.utils.register_class(PowerSequencerProperties)
26 bpy.types.Scene.power_sequencer = bpy.props.PointerProperty(type=PowerSequencerProperties)
29 def unregister_properties():
30 bpy.utils.unregister_class(PowerSequencerProperties)