From 5145f76aa9040abcdec0f4599644da5079b3741e Mon Sep 17 00:00:00 2001 From: Davide Date: Tue, 13 Jan 2026 22:49:15 +0100 Subject: [PATCH] Improve splash screen text visibility --- src/qt/splashscreen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/splashscreen.cpp b/src/qt/splashscreen.cpp index c7f24fa..3f07463 100644 --- a/src/qt/splashscreen.cpp +++ b/src/qt/splashscreen.cpp @@ -115,7 +115,7 @@ SplashScreen::SplashScreen(interfaces::Node& node, Qt::WindowFlags f, const Netw // draw copyright stuff { - pixPaint.setFont(QFont(font, 10*fontFactor)); + pixPaint.setFont(QFont(font, 13*fontFactor)); const int x = pixmap.width()/devicePixelRatio-titleTextWidth-paddingRight; const int y = paddingTop+titleCopyrightVSpace; QRect copyrightRect(x, y, pixmap.width() - x - paddingRight, pixmap.height() - y);