mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 05:13:30 -07:00
Display legal notice on screen center
This commit is contained in:
parent
d68b7fc9cb
commit
679c91435d
1 changed files with 2 additions and 0 deletions
|
@ -106,6 +106,8 @@ public:
|
||||||
msgBox.setWindowTitle(tr("Legal notice"));
|
msgBox.setWindowTitle(tr("Legal notice"));
|
||||||
msgBox.addButton(tr("Cancel"), QMessageBox::RejectRole);
|
msgBox.addButton(tr("Cancel"), QMessageBox::RejectRole);
|
||||||
QAbstractButton *agree_button = msgBox.addButton(tr("I Agree"), QMessageBox::AcceptRole);
|
QAbstractButton *agree_button = msgBox.addButton(tr("I Agree"), QMessageBox::AcceptRole);
|
||||||
|
msgBox.show(); // Need to be shown or to moveToCenter does not work
|
||||||
|
msgBox.move(misc::screenCenter(&msgBox));
|
||||||
msgBox.exec();
|
msgBox.exec();
|
||||||
if(msgBox.clickedButton() == agree_button) {
|
if(msgBox.clickedButton() == agree_button) {
|
||||||
// Save the answer
|
// Save the answer
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue