From eed7843d4a91c9862a3a3c52c8a4319f479e7a25 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Mon, 26 May 2025 14:57:45 -0500 Subject: [PATCH] DolphinQt: Add stretch to the end of the game config Info tab. --- Source/Core/DolphinQt/Config/InfoWidget.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/DolphinQt/Config/InfoWidget.cpp b/Source/Core/DolphinQt/Config/InfoWidget.cpp index 81371f0caf..53785d3cd0 100644 --- a/Source/Core/DolphinQt/Config/InfoWidget.cpp +++ b/Source/Core/DolphinQt/Config/InfoWidget.cpp @@ -37,6 +37,8 @@ InfoWidget::InfoWidget(const UICommon::GameFile& game) : m_game(game) if (!game.GetLanguages().empty()) layout->addWidget(CreateBannerDetails()); + layout->addStretch(1); + setLayout(layout); }