Fixes [stage]

This commit is contained in:
crschnick
2025-12-26 22:19:18 +00:00
parent bd839c6bc8
commit 03e0f200dc
3 changed files with 9 additions and 4 deletions
@@ -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;
}
+1 -1
View File
@@ -1 +1 @@
20.0-13
20.0-14