DolphinQt: Disable convert dialog dropdowns when they have one option

This commit is contained in:
JosJuice 2020-06-17 12:47:49 +02:00
parent 3411802fd1
commit b45f2c2ad3
1 changed files with 2 additions and 3 deletions

View File

@ -131,8 +131,6 @@ void ConvertDialog::OnFormatChanged()
{ {
case DiscIO::BlobType::GCZ: case DiscIO::BlobType::GCZ:
{ {
m_block_size->setEnabled(true);
// In order for versions of Dolphin prior to 5.0-11893 to be able to convert a GCZ file // In order for versions of Dolphin prior to 5.0-11893 to be able to convert a GCZ file
// to ISO without messing up the final part of the file in some way, the file size // to ISO without messing up the final part of the file in some way, the file size
// must be an integer multiple of the block size (fixed in 3aa463c) and must not be // must be an integer multiple of the block size (fixed in 3aa463c) and must not be
@ -169,9 +167,10 @@ void ConvertDialog::OnFormatChanged()
break; break;
} }
default: default:
m_block_size->setEnabled(false);
break; break;
} }
m_block_size->setEnabled(m_block_size->count() > 1);
} }
bool ConvertDialog::ShowAreYouSureDialog(const QString& text) bool ConvertDialog::ShowAreYouSureDialog(const QString& text)