electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 5f71163449cc1a484dad2ae3ac5fd3841ea32789
parent 5effaaf4281f0161ee59471c6eaf576bf2dbb683
Author: SomberNight <somber.night@protonmail.com>
Date:   Thu, 20 Jun 2019 17:32:21 +0200

qt crash reporter: add warning that report contents are public

Diffstat:
Melectrum/gui/qt/exception_window.py | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git 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))