blob: f26971428109dac236808aa10f0d4082345b27bd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- src/windows/preferences.py.orig 2024-06-24 20:49:58 UTC
+++ src/windows/preferences.py
@@ -335,7 +335,7 @@ class Preferences(QDialog):
value_list.remove(value_item)
elif os_platform == "Windows" and v not in ("0", "3", "4"):
value_list.remove(value_item)
- elif os_platform == "Linux" and v not in ("0", "1", "2", "6"):
+ elif (os_platform == "FreeBSD" or os_platform == "Linux") and v not in ("0", "1", "2", "6"):
value_list.remove(value_item)
# Add test button
|