mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 07:30:24 +00:00
Fix NPE with tabby
This commit is contained in:
parent
82003734b5
commit
b112d23163
2 changed files with 2 additions and 2 deletions
|
@ -52,7 +52,7 @@ public interface TabbyTerminalType extends ExternalTerminalType {
|
|||
// }
|
||||
// return null;
|
||||
// });
|
||||
return null;
|
||||
return TerminalInitFunction.none();
|
||||
}
|
||||
|
||||
class Windows extends ExternalTerminalType.WindowsType implements TabbyTerminalType {
|
||||
|
|
|
@ -32,7 +32,7 @@ public class TerminalLauncher {
|
|||
title,
|
||||
type.shouldClear()
|
||||
&& AppPrefs.get().clearTerminalOnInit().get(),
|
||||
null),
|
||||
TerminalInitFunction.none()),
|
||||
true);
|
||||
var config = new ExternalTerminalType.LaunchConfiguration(null, title, title, script, sc.getShellDialect());
|
||||
type.launch(config);
|
||||
|
|
Loading…
Reference in a new issue