Don't force close on checkpoint fail

This commit is contained in:
sqrrm 2019-08-07 23:16:15 +02:00
parent 1f7a244506
commit 398f173981
No known key found for this signature in database
GPG key ID: 45235F9EF87089EC

View file

@ -410,7 +410,6 @@ public class MainView extends InitializableView<StackPane, MainViewModel>
public void onCheckpointFail() { public void onCheckpointFail() {
new Popup<>().attention(Res.get("dao.monitor.daoState.checkpoint.popup")) new Popup<>().attention(Res.get("dao.monitor.daoState.checkpoint.popup"))
.useShutDownButton() .useShutDownButton()
.hideCloseButton()
.show(); .show();
} }