GH-2050 fix cancel button in file browse dialogs filling text fields
This commit is contained in:
@ -388,7 +388,7 @@ bool ExportInstanceDialog::doExport()
|
||||
const QString output = QFileDialog::getSaveFileName(
|
||||
this, tr("Export %1").arg(m_instance->name()),
|
||||
FS::PathCombine(QDir::homePath(), name + ".zip"), "Zip (*.zip)", nullptr, QFileDialog::DontConfirmOverwrite);
|
||||
if (output.isNull())
|
||||
if (output.isEmpty())
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
@ -54,11 +54,11 @@ void SkinUploadDialog::on_buttonBox_accepted()
|
||||
void SkinUploadDialog::on_skinBrowseBtn_clicked()
|
||||
{
|
||||
QString raw_path = QFileDialog::getOpenFileName(this, tr("Select Skin Texture"), QString(), "*.png");
|
||||
QString cooked_path = FS::NormalizePath(raw_path);
|
||||
if (cooked_path.isEmpty() || !QFileInfo::exists(cooked_path))
|
||||
if (raw_path.isEmpty() || !QFileInfo::exists(raw_path))
|
||||
{
|
||||
return;
|
||||
}
|
||||
QString cooked_path = FS::NormalizePath(raw_path);
|
||||
ui->skinPathTextBox->setText(cooked_path);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user