FedoraQt / QAdwaitaDecorations

Qt decoration plugin implementing Adwaita-like client-side decorations
GNU Lesser General Public License v2.1
72 stars 8 forks source link

segfault at forceRepaint() with qt 6.6 #33

Closed k1gen closed 11 months ago

k1gen commented 11 months ago

backtrace: https://paste.rs/ieS80.txt program:

#include <QApplication>
#include <QPushButton>

int main(int argc, char *argv[]) {
    QApplication a(argc, argv);
    QPushButton button("Hello world!", nullptr);
    button.resize(200, 100);
    button.show();
    return QApplication::exec();
}
grulja commented 11 months ago

Can you try to rebuild QAdwaitaDecorations after update to Qt 6.6? I think I've see similar issues in the past with QGnomePlatform.

k1gen commented 11 months ago

huh, recompilation solved it. thanks!