diff options
| author | João Barbosa <[email protected]> | 2018-07-30 22:47:48 +0100 |
|---|---|---|
| committer | João Barbosa <[email protected]> | 2018-07-30 23:13:04 +0100 |
| commit | 7bf22bf0c21d13557ec46a67413819ebcabc3df0 (patch) | |
| tree | 217bcb113f44fe3f8fcea4ca30f78aefcc97d438 | |
| parent | gui: Reject edit address dialog when key escape is pressed (diff) | |
| download | discoin-7bf22bf0c21d13557ec46a67413819ebcabc3df0.tar.xz discoin-7bf22bf0c21d13557ec46a67413819ebcabc3df0.zip | |
gui: Reject options dialog when key escape is pressed
| -rw-r--r-- | src/qt/optionsdialog.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qt/optionsdialog.cpp b/src/qt/optionsdialog.cpp index a57343f03..eea9a882b 100644 --- a/src/qt/optionsdialog.cpp +++ b/src/qt/optionsdialog.cpp @@ -115,6 +115,10 @@ OptionsDialog::OptionsDialog(QWidget *parent, bool enableWallet) : mapper->setSubmitPolicy(QDataWidgetMapper::ManualSubmit); mapper->setOrientation(Qt::Vertical); + GUIUtil::ItemDelegate* delegate = new GUIUtil::ItemDelegate(mapper); + connect(delegate, &GUIUtil::ItemDelegate::keyEscapePressed, this, &OptionsDialog::reject); + mapper->setItemDelegate(delegate); + /* setup/change UI elements when proxy IPs are invalid/valid */ ui->proxyIp->setCheckValidator(new ProxyAddressValidator(parent)); ui->proxyIpTor->setCheckValidator(new ProxyAddressValidator(parent)); |