Details
-
Bug
-
Resolution: Done
-
P1: Critical
-
5.6.0 Alpha
-
None
-
Linux x86_64, X11
-
561b9323c22a594b402eac343690898d4e9c44d0
Description
Consider the following QML:
import QtQuick 2.3 import QtQuick.Controls 1.2 Rectangle { visible: true width: 640 height: 480 Action { id: action tooltip: "lalala" } Button { text: qsTr("Hello World") anchors.centerIn: parent action: action } }
Run it in a QQuickWidget e.g. like this:
#include <QApplication> #include <QQuickWidget> int main(int argc, char *argv[]) { QApplication app(argc, argv); QQuickWidget widget; widget.setSource(QUrl::fromEncoded("qrc:/main.qml")); widget.show(); return app.exec(); }
With Qt 5.5 the tooltip "lalala" shows if you hover over the button, with Qt 5.6 it doesn't
Attachments
Issue Links
- is required for
-
QTBUG-47958 Issues to be fixed before Qt 5.6.0 Beta
- Closed