Qt/Settings: Add Cancel button to USB passthrough device dialog
This commit is contained in:
parent
feaa466edc
commit
b27c688fdf
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue