Qt/Settings: Add Cancel button to USB passthrough device dialog

This commit is contained in:
Z1ni 2018-10-09 01:19:21 +03:00
parent feaa466edc
commit b27c688fdf
1 changed files with 3 additions and 0 deletions

View File

@ -48,9 +48,12 @@ void USBDeviceAddToWhitelistDialog::InitControls()
m_whitelist_buttonbox = new QDialogButtonBox();
auto* add_button = new QPushButton(tr("Add"));
auto* cancel_button = new QPushButton(tr("Cancel"));
m_whitelist_buttonbox->addButton(add_button, QDialogButtonBox::AcceptRole);
m_whitelist_buttonbox->addButton(cancel_button, QDialogButtonBox::RejectRole);
connect(add_button, &QPushButton::clicked, this,
&USBDeviceAddToWhitelistDialog::AddUSBDeviceToWhitelist);
connect(cancel_button, &QPushButton::clicked, this, &USBDeviceAddToWhitelistDialog::reject);
add_button->setDefault(true);
main_layout = new QVBoxLayout();