From b045fe7c0dfb4b4b9f3552b62be9bafcfe240c71 Mon Sep 17 00:00:00 2001 From: davide3011 Date: Mon, 12 Jan 2026 23:47:55 +0100 Subject: [PATCH] Improve UI: enhance splash screen readability and fix window minimum size --- src/qt/palladiumgui.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/qt/palladiumgui.cpp b/src/qt/palladiumgui.cpp index 6f1ce09..dd4a393 100644 --- a/src/qt/palladiumgui.cpp +++ b/src/qt/palladiumgui.cpp @@ -109,9 +109,6 @@ PalladiumGUI::PalladiumGUI(interfaces::Node& node, const PlatformStyle *_platfor move(QGuiApplication::primaryScreen()->availableGeometry().center() - frameGeometry().center()); } - // Set minimum window size to prevent UI breaking (must be after restoreGeometry) - setMinimumSize(850, 550); - #ifdef ENABLE_WALLET enableWallet = WalletModel::isWalletEnabled(); #endif // ENABLE_WALLET @@ -267,6 +264,10 @@ PalladiumGUI::PalladiumGUI(interfaces::Node& node, const PlatformStyle *_platfor // Check beim Start ausführen checkUpdate(); // --- ENDE EINFÜGUNG: UPDATE CHECKER --- + + // Set minimum window size to prevent UI breaking + // Must be set AFTER all widgets are configured to ensure it's not overridden + setMinimumSize(850, 550); } PalladiumGUI::~PalladiumGUI()