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() {
|
void ConfigureCamera::onToolButtonClicked() {
|
||||||
stopPreviewing();
|
stopPreviewing();
|
||||||
int camera_selection = getSelectedCameraIndex();
|
QList<QByteArray> types = QImageReader::supportedImageFormats();
|
||||||
QString filter;
|
QList<QString> temp_filters;
|
||||||
if (camera_name[camera_selection] == "image") {
|
for (const QByteArray& type : types) {
|
||||||
QList<QByteArray> types = QImageReader::supportedImageFormats();
|
temp_filters << QString("*." + QString(type));
|
||||||
QList<QString> temp_filters;
|
|
||||||
for (const QByteArray& type : types) {
|
|
||||||
temp_filters << QString("*." + QString(type));
|
|
||||||
}
|
|
||||||
filter = tr("Supported image files (%1)").arg(temp_filters.join(" "));
|
|
||||||
}
|
}
|
||||||
|
QString filter = tr("Supported image files (%1)").arg(temp_filters.join(" "));
|
||||||
QString path = QFileDialog::getOpenFileName(this, tr("Open File"), ".", filter);
|
QString path = QFileDialog::getOpenFileName(this, tr("Open File"), ".", filter);
|
||||||
if (!path.isEmpty()) {
|
if (!path.isEmpty()) {
|
||||||
ui->camera_file->setText(path);
|
ui->camera_file->setText(path);
|
||||||
|
|
Reference in New Issue