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

--- Comment #22 from gggeri91 <[email protected]> ---
Lets try to narrow it down to Qt (and the infrastructure underneath Qt). With
the following little test we can proove it is not KDE.

1) Simple QApplication with QLineEdit control
Create "test1.cpp" with the following content:

#include <QApplication>
#include <QLineEdit>
int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    QLineEdit edit;
    edit.setPlaceholderText("Type something...");
    edit.show();
    return app.exec();
}

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

Observations:
- The bug is reproduced
- This little program does not use anything from KDE
- Therefore we can say the issue is not within KDE, but rather in Qt or the
infrastructure underneath

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

Reply via email to