From ed4cecf19c125a861684c0ae5cae1776e063a1f2 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 27 Feb 2019 09:53:13 +0100 Subject: [PATCH] ln_message: trigger notification instead of popup --- electrum/gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py index bfe3f66d2..5a4554aa4 100644 --- a/electrum/gui/qt/main_window.py +++ b/electrum/gui/qt/main_window.py @@ -406,7 +406,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger): elif event == 'ln_message': lnworker, message, htlc_id = args if lnworker == self.wallet.lnworker: - self.show_message(message) + self.notify(message) else: self.logger.info(f"unexpected network_qt signal: {event} {args}")