mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-05-03 11:20:34 +00:00
Fixes [stage]
This commit is contained in:
@@ -24,6 +24,10 @@ public class WrapperFileSystem implements FileSystem {
|
||||
this.runningCheck = () -> fs.isRunning();
|
||||
}
|
||||
|
||||
public FileSystem getWrappedFileSystem() {
|
||||
return fs;
|
||||
}
|
||||
|
||||
public void withFileSystem(FailableConsumer<FileSystem, Exception> consumer) throws Exception {
|
||||
if (!runningCheck.get()) {
|
||||
return;
|
||||
|
||||
@@ -357,10 +357,11 @@ public class IdentityApplyDialog {
|
||||
var showSetIdentityButton = new SimpleBooleanProperty();
|
||||
var showIdentityAlreadySet = new SimpleBooleanProperty();
|
||||
system.addListener((observable, oldValue, newValue) -> {
|
||||
systemState.setValue(null);
|
||||
showSetIdentityButton.set(false);
|
||||
showIdentityAlreadySet.set(false);
|
||||
|
||||
if (newValue == null) {
|
||||
systemState.setValue(null);
|
||||
showSetIdentityButton.set(false);
|
||||
showIdentityAlreadySet.set(false);
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user