[pitivi] effects: Stop hiding scale0tilt
- From: Alexandru Băluț <alexbalut src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pitivi] effects: Stop hiding scale0tilt
- Date: Tue, 1 Nov 2016 08:38:44 +0000 (UTC)
commit 8173003d2f7a009db75f220d34a6e1ac88f086d5
Author: Alexandru Băluț <alexandru balut gmail com>
Date: Wed Oct 12 17:13:08 2016 +0200
effects: Stop hiding scale0tilt
It's not used anymore to back up the transformation UI.
Reviewed-by: Thibault Saunier <tsaunier gnome org>
Differential Revision: https://phabricator.freedesktop.org/D1383
pitivi/effects.py | 27 +++++++++++++--------------
1 files changed, 13 insertions(+), 14 deletions(-)
---
diff --git a/pitivi/effects.py b/pitivi/effects.py
index eba2f58..6681227 100644
--- a/pitivi/effects.py
+++ b/pitivi/effects.py
@@ -129,6 +129,19 @@ BLACKLISTED_EFFECTS = ["colorconvert", "coglogoinsert", "festival",
BLACKLISTED_PLUGINS = []
+HIDDEN_EFFECTS = [
+ # Overlaying an image onto a video stream can already be done.
+ "gdkpixbufoverlay"]
+
+GlobalSettings.addConfigSection('effect-library')
+
+(COL_NAME_TEXT,
+ COL_DESC_TEXT,
+ COL_EFFECT_TYPE,
+ COL_EFFECT_CATEGORIES,
+ COL_ELEMENT_NAME,
+ COL_ICON) = list(range(6))
+
ICON_WIDTH = 48 + 2 * 6 # 48 pixels, plus a margin on each side
@@ -277,20 +290,6 @@ class EffectsManager(object):
# ----------------------- UI classes to manage effects -------------------------#
-HIDDEN_EFFECTS = [
- # Overlaying an image onto a video stream can already be done.
- "gdkpixbufoverlay",
- "frei0r-filter-scale0tilt"]
-
-GlobalSettings.addConfigSection('effect-library')
-
-(COL_NAME_TEXT,
- COL_DESC_TEXT,
- COL_EFFECT_TYPE,
- COL_EFFECT_CATEGORIES,
- COL_ELEMENT_NAME,
- COL_ICON) = list(range(6))
-
class EffectListWidget(Gtk.Box, Loggable):
"""Widget for listing effects."""
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]