summaryrefslogtreecommitdiff
path: root/gui/backend.go
diff options
context:
space:
mode:
authorkali kaneko (leap communications) <kali@leap.se>2021-03-10 22:36:26 +0100
committerRuben Pollan <meskio@sindominio.net>2021-03-11 17:05:46 +0100
commitc4bfc04603c361e6a3833f5846d311a73073cd18 (patch)
tree51064c031fc0863b0e6c2a2a9c98fd93039074c2 /gui/backend.go
parent27d770b0bed12fb6b42b4e1a94b549ac559985d2 (diff)
[bug] inform backend when donate dialog is shown
a rather annoying bug, since it keeps popping up for every status change. to be included in a hotfix for 0.21.2 release. - Release: 0.21.2 - Closes: #459
Diffstat (limited to 'gui/backend.go')
-rw-r--r--gui/backend.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/gui/backend.go b/gui/backend.go
index 9453d88..96f50de 100644
--- a/gui/backend.go
+++ b/gui/backend.go
@@ -40,6 +40,11 @@ func DonateAccepted() {
backend.DonateAccepted()
}
+//export DonateSeen
+func DonateSeen() {
+ backend.DonateSeen()
+}
+
//export SubscribeToEvent
func SubscribeToEvent(event string, f unsafe.Pointer) {
backend.SubscribeToEvent(event, f)