https://bugs.kde.org/show_bug.cgi?id=516511

--- Comment #23 from gggeri91 <[email protected]> ---
Same can be observed with QInputDialog.

2) Simple QApplication with QInputDialog
Create "test2.cpp" with the following content:

#include <QApplication>
#include <QInputDialog>
int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    bool ok;
    QString text = QInputDialog::getText(
        nullptr,
        "Qt Test",
        "Enter something:",
        QLineEdit::Normal,
        "",
        &ok
    );
    return 0;
}


Compile and run with:
g++ test2.cpp -o test2 $(pkg-config --cflags --libs Qt6Widgets) && ./test2

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to