Fix linux term fallback

This commit is contained in:
crschnick 2024-08-29 07:12:58 +00:00
parent aa552f5837
commit a4a7a1ee86

View file

@ -82,7 +82,7 @@ public interface ExternalTerminalType extends PrefsChoiceValue {
switch (OsType.getLocal()) { switch (OsType.getLocal()) {
case OsType.Linux linux -> { case OsType.Linux linux -> {
// This should not be termius as all others take precedence // This should not be termius as all others take precedence
var def = determineDefault(type); var def = determineDefault(null);
// If there's no other terminal available, use a fallback which won't work // If there's no other terminal available, use a fallback which won't work
return def != TERMIUS ? def : XTERM; return def != TERMIUS ? def : XTERM;
} }