From 2bc944e1a3c974bea031cd1b2c4dd7257deca2da Mon Sep 17 00:00:00 2001 From: TryTwo Date: Thu, 16 Oct 2025 15:58:32 -0700 Subject: [PATCH] Settings BalloonTip: Wrapped tips were not using the maximum width, resulting in a much smaller width than they should have. --- Source/Core/DolphinQt/Config/ToolTipControls/BalloonTip.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/Core/DolphinQt/Config/ToolTipControls/BalloonTip.cpp b/Source/Core/DolphinQt/Config/ToolTipControls/BalloonTip.cpp index ffed038c19..d9dce8dc81 100644 --- a/Source/Core/DolphinQt/Config/ToolTipControls/BalloonTip.cpp +++ b/Source/Core/DolphinQt/Config/ToolTipControls/BalloonTip.cpp @@ -104,8 +104,12 @@ BalloonTip::BalloonTip(PrivateTag, const QString& title, QString message, QWidge const int max_width = label->screen()->availableGeometry().width() / 3; label->setMaximumWidth(max_width); + if (label->sizeHint().width() > max_width) + { label->setWordWrap(true); + label->setMinimumWidth(max_width); + } return label; };