tqt crash report: fix formatting - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 0bce96d2dec6b7a6b244f08f2619b90a3e30ca54 DIR parent 5469e3668ef2d7405849c8e6e88f67a4acfc399b HTML Author: SomberNight <somber.night@protonmail.com> Date: Mon, 24 Dec 2018 18:52:03 +0100 qt crash report: fix formatting follow-up 5dc240d4ed39796bec72ac115d920160865b3ec5 Diffstat: M electrum/gui/qt/exception_window.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- DIR diff --git a/electrum/gui/qt/exception_window.py b/electrum/gui/qt/exception_window.py t@@ -57,7 +57,8 @@ class Exception_Window(BaseCrashReporter, QWidget, MessageBoxMixin): collapse_info = QPushButton(_("Show report contents")) collapse_info.clicked.connect( lambda: self.msg_box(QMessageBox.NoIcon, - self, _("Report contents"), self.get_report_string())) + self, _("Report contents"), self.get_report_string(), + rich_text=True)) main_box.addWidget(collapse_info)