citra_qt: Fix image file selection dialog
This commit is contained in:
parent
438751075f
commit
0bd843f324
|
@ -267,16 +267,12 @@ void ConfigureCamera::setConfiguration() {
|
|||
|
||||
void ConfigureCamera::onToolButtonClicked() {
|
||||
stopPreviewing();
|
||||
int camera_selection = getSelectedCameraIndex();
|
||||
QString filter;
|
||||
if (camera_name[camera_selection] == "image") {
|
||||
QList<QByteArray> types = QImageReader::supportedImageFormats();
|
||||
QList<QString> temp_filters;
|
||||
for (const QByteArray& type : types) {
|
||||
temp_filters << QString("*." + QString(type));
|
||||
}
|
||||
filter = tr("Supported image files (%1)").arg(temp_filters.join(" "));
|
||||
QList<QByteArray> types = QImageReader::supportedImageFormats();
|
||||
QList<QString> temp_filters;
|
||||
for (const QByteArray& type : types) {
|
||||
temp_filters << QString("*." + QString(type));
|
||||
}
|
||||
QString filter = tr("Supported image files (%1)").arg(temp_filters.join(" "));
|
||||
QString path = QFileDialog::getOpenFileName(this, tr("Open File"), ".", filter);
|
||||
if (!path.isEmpty()) {
|
||||
ui->camera_file->setText(path);
|
||||
|
|
Reference in New Issue