diff options
author | Tobias C. Berner <tcberner@FreeBSD.org> | 2019-12-08 11:33:29 +0000 |
---|---|---|
committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2019-12-08 11:33:29 +0000 |
commit | f2d3bfa7ac66bb8d75ee1564071d569765eac8b1 (patch) | |
tree | 30cbfea408569bf0b7bd1316fde7479073d1a438 /multimedia/openshot/files/patch-src_windows_preferences.py | |
parent | multimedia/libopenshot: Update to 0.2.3.490 (diff) |
multimedia/openshot: Update to 2.4.4
- give maintainership to tatsuki_makino@hotmail.com
PR: 234803
Submitted by: Tatsuki Makino <tatsuki_makino@hotmail.com>,
Reported by: kunda <chitty_cloud@me.com>
Notes
Notes:
svn path=/head/; revision=519293
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 |