summaryrefslogtreecommitdiff
path: root/gui/qml
diff options
context:
space:
mode:
Diffstat (limited to 'gui/qml')
-rw-r--r--gui/qml/LoginOKDialog.qml3
-rw-r--r--gui/qml/main.qml2
2 files changed, 3 insertions, 2 deletions
diff --git a/gui/qml/LoginOKDialog.qml b/gui/qml/LoginOKDialog.qml
index be023dd..bceda18 100644
--- a/gui/qml/LoginOKDialog.qml
+++ b/gui/qml/LoginOKDialog.qml
@@ -13,7 +13,8 @@ Dialog {
}
function _loginOk() {
- backend.resetError("bad_auth")
+ visible: false;
+ backend.resetNotification("login_ok");
}
visible: false
diff --git a/gui/qml/main.qml b/gui/qml/main.qml
index fe69a3b..9f8bea3 100644
--- a/gui/qml/main.qml
+++ b/gui/qml/main.qml
@@ -16,12 +16,12 @@ ApplicationWindow {
target: jsonModel
onDataChanged: {
ctx = JSON.parse(jsonModel.getJson());
+
if (ctx.donateDialog == 'true') {
console.debug(jsonModel.getJson())
donate.visible = true
}
if (ctx.loginDialog == 'true') {
- console.debug(jsonModel.getJson())
login.visible = true
}
if (ctx.loginOk == 'true') {