diff options
Diffstat (limited to 'multimedia/openshot/files/patch-src_windows_preferences.py')
-rw-r--r-- | multimedia/openshot/files/patch-src_windows_preferences.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/multimedia/openshot/files/patch-src_windows_preferences.py b/multimedia/openshot/files/patch-src_windows_preferences.py new file mode 100644 index 000000000000..b51aca218983 --- /dev/null +++ b/multimedia/openshot/files/patch-src_windows_preferences.py @@ -0,0 +1,11 @@ +--- src/windows/preferences.py.orig 2019-11-11 07:57:57 UTC ++++ src/windows/preferences.py +@@ -293,7 +293,7 @@ class Preferences(QDialog): + value_list.remove(value_item) + elif os_platform == "Windows" and v not in ("0", "3", "4", "7"): + value_list.remove(value_item) +- elif os_platform == "Linux" and v not in ("0", "1", "2", "6", "7"): ++ elif (os_platform == "FreeBSD" or os_platform == "Linux") and v not in ("0", "1", "2", "6", "7"): + value_list.remove(value_item) + + # Remove hardware mode items which cannot decode the example video |