[pitivi/1.0] effects: Blacklist videobox



commit b800218e4bc66f2d3eaa841e7765185bf92c9593
Author: Alexandru Băluț <alexandru balut gmail com>
Date:   Tue Jan 29 07:29:24 2019 +0100

    effects: Blacklist videobox
    
    We prefer to use videocrop
    
    Fixes #2150

 pitivi/effects.py | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)
---
diff --git a/pitivi/effects.py b/pitivi/effects.py
index de5bb271..6a5d20e8 100644
--- a/pitivi/effects.py
+++ b/pitivi/effects.py
@@ -124,9 +124,19 @@ VIDEO_EFFECTS_CATEGORIES = (
     )),
 )
 
-BLACKLISTED_EFFECTS = ["colorconvert", "coglogoinsert", "festival",
-                       "alphacolor", "cogcolorspace", "videodetect",
-                       "navigationtest", "videoanalyse", "volume"]
+BLACKLISTED_EFFECTS = [
+    "alphacolor",
+    "cogcolorspace",
+    "coglogoinsert",
+    "colorconvert",
+    "festival",
+    "navigationtest",
+    "videoanalyse",
+    # We prefer to use videocrop, see https://gitlab.gnome.org/GNOME/pitivi/issues/2150
+    "videobox",
+    "videodetect",
+    "volume",
+]
 
 BLACKLISTED_PLUGINS = []
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]