From b45f2c2ad3c5287665c12bf163791418f66f2178 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Wed, 17 Jun 2020 12:47:49 +0200 Subject: [PATCH] DolphinQt: Disable convert dialog dropdowns when they have one option --- Source/Core/DolphinQt/ConvertDialog.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Source/Core/DolphinQt/ConvertDialog.cpp b/Source/Core/DolphinQt/ConvertDialog.cpp index a359f48f03..0d01785dc4 100644 --- a/Source/Core/DolphinQt/ConvertDialog.cpp +++ b/Source/Core/DolphinQt/ConvertDialog.cpp @@ -131,8 +131,6 @@ void ConvertDialog::OnFormatChanged() { 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 // 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 @@ -169,9 +167,10 @@ void ConvertDialog::OnFormatChanged() break; } default: - m_block_size->setEnabled(false); break; } + + m_block_size->setEnabled(m_block_size->count() > 1); } bool ConvertDialog::ShowAreYouSureDialog(const QString& text)