Fix disc image conversion button not being clear #3

It wasn't clear whether the conversion would create a new file or replace the old one

Recreated #8952 directly from github
This commit is contained in:
Filippo Tarpini 2020-07-22 23:00:20 +03:00 committed by GitHub
parent 92d24aec2e
commit f6ba54b74e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ ConvertDialog::ConvertDialog(QList<std::shared_ptr<const UICommon::GameFile>> fi
grid_layout->addWidget(new QLabel(tr("Remove Junk Data (Irreversible):")), 4, 0);
grid_layout->addWidget(m_scrub, 4, 1);
QPushButton* convert_button = new QPushButton(tr("Convert"));
QPushButton* convert_button = new QPushButton(tr("Convert..."));
QVBoxLayout* options_layout = new QVBoxLayout;
options_layout->addLayout(grid_layout);