diff --git a/src/cutecoin/gui/toast.py b/src/cutecoin/gui/toast.py index 8dd5ecc300248e327294fedfc270e2bf7e283e0e..505e4a9eb332e3afce17096919bab4f0cdf8590f 100644 --- a/src/cutecoin/gui/toast.py +++ b/src/cutecoin/gui/toast.py @@ -23,6 +23,7 @@ def display(title, msg): notify2.init("cutecoin") n = notify2.Notification(title, msg) + n.show() except ImportError: _Toast(title, msg) @@ -46,7 +47,6 @@ def display(title, msg): # ) # n.set_hint('icon_data', icon_struct) # n.set_timeout(5000) - n.show() else: _Toast(title, msg)