From 5f71163449cc1a484dad2ae3ac5fd3841ea32789 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Thu, 20 Jun 2019 17:32:21 +0200 Subject: [PATCH] qt crash reporter: add warning that report contents are public --- electrum/gui/qt/exception_window.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/electrum/gui/qt/exception_window.py b/electrum/gui/qt/exception_window.py index da05044ab..982312c3c 100644 --- a/electrum/gui/qt/exception_window.py +++ b/electrum/gui/qt/exception_window.py @@ -69,6 +69,8 @@ class Exception_Window(BaseCrashReporter, QWidget, MessageBoxMixin, Logger): self.description_textfield = QTextEdit() self.description_textfield.setFixedHeight(50) + self.description_textfield.setPlaceholderText(_("Do not enter sensitive/private information here. " + "The report will be visible on the public issue tracker.")) main_box.addWidget(self.description_textfield) main_box.addWidget(QLabel(BaseCrashReporter.ASK_CONFIRM_SEND))