Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.8.0
Description
Looks like the width of a ToolTip native window is slightly too small on macOS, causing a wordwrap. This does not occur on Windows.
Please see screenshots.
Reproducer:
import QtQuick import QtQuick.Controls Window { width: 640 height: 480 visible: true title: qsTr("Hello World") Button { text: "Hover me" Component.onCompleted: { ToolTip.toolTip.popupType = Popup.Native } ToolTip.visible: hovered ToolTip.text: "This is a ToolTip" } }