From aafe961177f252aacbb1b439b89c3590b79cf08b Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Mon, 26 May 2025 15:09:37 -0500 Subject: [PATCH] DolphinQt: Make GeckoCodeWidget default size not taller than it needs to be. --- Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp b/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp index 6b7e487bde..de0f79a904 100644 --- a/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp +++ b/Source/Core/DolphinQt/Config/GeckoCodeWidget.cpp @@ -29,6 +29,7 @@ #include "DolphinQt/Config/HardcoreWarningWidget.h" #include "DolphinQt/QtUtils/ModalMessageBox.h" #include "DolphinQt/QtUtils/NonDefaultQPushButton.h" +#include "DolphinQt/QtUtils/QtUtils.h" #include "DolphinQt/QtUtils/SetWindowDecorations.h" #include "DolphinQt/QtUtils/WrapInScrollArea.h" @@ -74,7 +75,7 @@ void GeckoCodeWidget::CreateWidgets() #ifdef USE_RETRO_ACHIEVEMENTS m_hc_warning = new HardcoreWarningWidget(this); #endif // USE_RETRO_ACHIEVEMENTS - m_code_list = new QListWidget; + m_code_list = new QtUtils::MinimumSizeHintWidget; m_name_label = new QLabel; m_creator_label = new QLabel;