[pitivi/wip-titles: 1/5] clipproperties: Set initial title for title clips
- From: Alexandru Băluț <alexbalut src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pitivi/wip-titles: 1/5] clipproperties: Set initial title for title clips
- Date: Wed, 27 Jan 2021 20:55:00 +0000 (UTC)
commit 34586e1266efedae10cc7024ff6f54df004633a5
Author: Aitik Gupta <aitikgupta gmail com>
Date: Wed Jan 13 15:43:48 2021 +0530
clipproperties: Set initial title for title clips
Adds a finalizing_action to the title clip add operation,
otherwise the initial text is not visible.
Fixes #2534
pitivi/clipproperties.py | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
---
diff --git a/pitivi/clipproperties.py b/pitivi/clipproperties.py
index 6daa1a22b..21d580854 100644
--- a/pitivi/clipproperties.py
+++ b/pitivi/clipproperties.py
@@ -53,6 +53,8 @@ from pitivi.utils.ui import SPACING
COL_DESC_TEXT,
COL_TRACK_EFFECT) = list(range(6))
+# Translators: This is the default text of a title clip.
+DEFAULT_TEXT = _("Title Clip")
FOREGROUND_DEFAULT_COLOR = 0xFFFFFFFF # White
BACKGROUND_DEFAULT_COLOR = 0x00000000 # Transparent
DEFAULT_FONT_DESCRIPTION = "Sans 36"
@@ -144,13 +146,15 @@ class ClipProperties(Gtk.ScrolledWindow, Loggable):
title_clip = GES.TitleClip()
duration = self.app.settings.titleClipLength * Gst.MSECOND
title_clip.set_duration(duration)
- with self.app.action_log.started("add title clip", toplevel=True):
+ with self.app.action_log.started("add title clip",
+
finalizing_action=CommitTimelineFinalizingAction(self._project.pipeline),
+ toplevel=True):
self.app.gui.editor.timeline_ui.insert_clips_on_first_layer([
title_clip])
# Now that the clip is inserted in the timeline, it has a source which
# can be used to set its properties.
source = title_clip.get_children(False)[0]
- properties = {"text": "",
+ properties = {"text": DEFAULT_TEXT,
"foreground-color": BACKGROUND_DEFAULT_COLOR,
"color": FOREGROUND_DEFAULT_COLOR,
"font-desc": DEFAULT_FONT_DESCRIPTION,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]