mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 23:20:23 +00:00
Fix linux term fallback
This commit is contained in:
parent
aa552f5837
commit
a4a7a1ee86
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue