From 333ebb5bc2c26c85a3053a4a08102bcdbcac4b9b Mon Sep 17 00:00:00 2001 From: Miikka Heikkinen Date: Tue, 7 Mar 2023 13:57:27 +0200 Subject: [PATCH] QmlDesigner: Fix content library textures tooltip width Width calculation didn't account for possible status text. Change-Id: I58378a2dd185ea9ad47459ce107c1c227c2f6fd8 Reviewed-by: Mahmoud Badri Reviewed-by: --- .../contentLibraryQmlSource/ContentLibraryTexture.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/qtcreator/qmldesigner/contentLibraryQmlSource/ContentLibraryTexture.qml b/share/qtcreator/qmldesigner/contentLibraryQmlSource/ContentLibraryTexture.qml index 6b2e3fe264e..1890158aad2 100644 --- a/share/qtcreator/qmldesigner/contentLibraryQmlSource/ContentLibraryTexture.qml +++ b/share/qtcreator/qmldesigner/contentLibraryQmlSource/ContentLibraryTexture.qml @@ -142,7 +142,7 @@ Item { Text { id: helperText - text: modelData.textureToolTip + text: tooltip.text visible: false } }