Merge pull request 'externalLinkWarning: minor fixes' (#326) from tobtoht/feather:external_link_fix into master

Reviewed-on: https://git.wownero.com/feather/feather/pulls/326
This commit is contained in:
tobtoht 2021-02-03 23:28:03 +00:00
commit 0a7261d05d
1 changed files with 2 additions and 1 deletions

View File

@ -165,12 +165,13 @@ void Utils::externalLinkWarning(QWidget *parent, const QString &url){
body += "\n\nYou will NOT be using Tor.";
QMessageBox linkWarning;
QMessageBox linkWarning(parent);
linkWarning.setWindowTitle("External link warning");
linkWarning.setText(body);
QPushButton *copy = linkWarning.addButton("Copy link", QMessageBox::HelpRole);
linkWarning.addButton(QMessageBox::Cancel);
linkWarning.addButton(QMessageBox::Ok);
linkWarning.setDefaultButton(QMessageBox::Ok);
linkWarning.exec();