From 57b4b3d09bf5ba94e84090c4d1babec87ee8c5c5 Mon Sep 17 00:00:00 2001 From: ilkinsufi Date: Tue, 21 Oct 2025 22:54:55 +0400 Subject: [PATCH] qt: Increase tooltip wrap threshold from 80 to 100 characters This change improves the user experience by allowing longer tooltips to be displayed before they are converted to rich text format. The previous threshold of 80 characters was too restrictive for modern displays and longer descriptive tooltips. --- src/qt/guiconstants.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/guiconstants.h b/src/qt/guiconstants.h index 30ffa302a4b..c74926ec18b 100644 --- a/src/qt/guiconstants.h +++ b/src/qt/guiconstants.h @@ -41,7 +41,7 @@ static const bool DEFAULT_SPLASHSCREEN = true; /* Tooltips longer than this (in characters) are converted into rich text, so that they can be word-wrapped. */ -static const int TOOLTIP_WRAP_THRESHOLD = 80; +static const int TOOLTIP_WRAP_THRESHOLD = 100; /* Number of frames in spinner animation */ #define SPINNER_FRAMES 36