diff options
Diffstat (limited to 'gui/qml')
-rw-r--r-- | gui/qml/main.qml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gui/qml/main.qml b/gui/qml/main.qml index 4ac1972..aed08ea 100644 --- a/gui/qml/main.qml +++ b/gui/qml/main.qml @@ -21,11 +21,10 @@ ApplicationWindow { onDataChanged: { ctx = JSON.parse(jsonModel.getJson()) - // FIXME -- we need to inform the backend that we've already seen - // this. Otherwise this keeps popping randonmly on state changes. if (ctx.donateDialog == 'true') { console.debug(jsonModel.getJson()) donate.visible = true + backend.donateSeen() } if (ctx.loginDialog == 'true') { console.debug(jsonModel.getJson()) |