mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 07:21:25 +12:00
Fix VFS default button (#2975)
This commit is contained in:
parent
b7aed7bbde
commit
cea0ff4598
1 changed files with 3 additions and 0 deletions
|
@ -49,6 +49,9 @@ vfs_dialog::vfs_dialog(QWidget* parent) : QDialog(parent),
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
QPushButton* okay = new QPushButton(tr("Okay"));
|
QPushButton* okay = new QPushButton(tr("Okay"));
|
||||||
|
okay->setAutoDefault(true);
|
||||||
|
okay->setDefault(true);
|
||||||
|
|
||||||
connect(okay, &QAbstractButton::pressed, [this]() {
|
connect(okay, &QAbstractButton::pressed, [this]() {
|
||||||
for (int i = 0; i < tabs->count(); ++i)
|
for (int i = 0; i < tabs->count(); ++i)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue