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

Reviewed-on: feather/feather#326
remotes/1691844314220217825/master
tobtoht 3 years ago
commit 0a7261d05d

@ -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();

Loading…
Cancel
Save