Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
5.1.1, 5.2.0 Beta1 , 5.3.0
-
Linux (Fedora 17) 64-bit, Windows 7
Description
In a simple application like this:
import QtQuick 2.1 import QtQuick.Controls 1.0 Rectangle { Button { text: "Hello World" tooltip: "testing this functionality" } }
The tooltip of the button works fine when the qml is shown with the "qmlscene" viewer.
However, as soon as it is shown inside a QQuickView in a simple Qt/C++ application, no tooltip is shown at all:
#include <QtGui/QGuiApplication> int main(int argc, char *argv[]) { QGuiApplication app(argc, argv); QQuickView view; view.setSource(QUrl("qml/main.qml")); view.show(); return app.exec(); }