diff options
Diffstat (limited to 'gui/qml/FailDialog.qml')
-rw-r--r-- | gui/qml/FailDialog.qml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gui/qml/FailDialog.qml b/gui/qml/FailDialog.qml index a78690e..d151feb 100644 --- a/gui/qml/FailDialog.qml +++ b/gui/qml/FailDialog.qml @@ -16,7 +16,11 @@ MessageDialog { if (ctx.loginDialog == 'true') { login.visible = true } else { - backend.quit() + // FIXME - we probably want to distinguish + // fatal from recoverable errors. For the time being + // we can avoid quitting so that people can try reconnects if it's + // a network problem, it's confusing to quit the app. + // backend.quit() } } } |