Skip to content
Qt 6.11 is out! See what's new in the release blog
  • 0 Votes
    4 Posts
    4k Views
    hskoglundH
    Well to fix the crash perhaps you can find and update the video driver for your asus eee netbook. But you can make Qt Creator start using the mouse (no CMD window): Start Qt Creator one last time using CMD window, goto menu Help, About Plugins... Find the line with the Welcome plugin, and deselect the Load tickbox. Now you should be able to start Qt Ctreator the usual way.
  • 0 Votes
    4 Posts
    3k Views
    SGaistS
    You're welcome ! Since you have it working now, please update the thread title prepending [solved] so other forum users may know a solution has been found :) Also, while browsing the forum, if you come across answer(s) that you find useful, please consider up-voting them. That will make them more visible for other visitors.
  • Menu not working in Ubuntu/Unity

    General and Desktop menu ubuntu unity problem
    2
    0 Votes
    2 Posts
    2k Views
    M
    Hi and welcome to devnet, 2 things: Why this QString::fromUtf8(tr("XXX").toLatin1()) instead of tr("XXX") in QAction constructor ?? Why this mainWindow.menuBar()->addMenu(fileMenu); at the end ??
  • 0 Votes
    2 Posts
    2k Views
    M
    @MrKozmon I'm having the exact same problem on Android. When I drag a QQuickWidget that is hosting a QML-based WebView on Android, the widget moves but the WebView is left in the original position. Wondering if there has been any progress or a workaround for this issue. I am using Qt 5.10.0, developing for an x86 Android platform.
  • C++ enum in QML is undefined

    QML and Qt Quick c++ qml problem
    3
    1 Votes
    3 Posts
    11k Views
    S
    @SGaist I finally figured it out now, the problem was that I didn't register my class in main.cpp using the qmlRegisterType from <QtQml>. The code below works #include <QApplication> #include <QQmlApplicationEngine> #include <QQmlContext> #include <QtQml> #include "App.hpp" int main(int argc, char *argv[]) { QApplication application(argc, argv); App app; QQmlApplicationEngine engine; qmlRegisterType<App>("SomeLib", 1, 0, "App"); engine.rootContext()->setContextProperty("App", &app); engine.load(QUrl(QStringLiteral("qrc:/main.qml"))); return application.exec(); } main.qml import QtQuick 2.4 import QtQuick.Window 2.2 import QtQuick.Controls 1.3 import SomeLib 1.0 ApplicationWindow { title: qsTr("My App") visible: true width: 640 height: 480 Text { text: "main view: " + App.BrowserView } }
  • Qt Creator unreadable fonts

    The Lounge qtcreator font problem text menu
    3
    0 Votes
    3 Posts
    3k Views
    byT3b0N3B
    ty, I have downgraded some packages (libglapi-mesa f.e.) and reinstalled some others. nopw everything is fine!
  • 0 Votes
    7 Posts
    5k Views
    M
    To add to @SGaist: In my company we build the same code in 3 platform Windows / Visual C++ Linux / g++ OSX / clang Usually Visual C++ is the one less conform to the standard