[Qt4-preview-feedback] FramelessWindowHint not honored after a QWiget.Move on OSX Carbon

Luc Devallonné luc.devallonne at mnemis.com
Fri Feb 6 09:12:53 CET 2009


Hello,

On OSX (Carbon), trunk 20090203, if one moves a widget, the flag
"FramelessWindowHint" is not honored anymore and the windows becomes
resizable.

Luc


#include <QtGui>

int main(int argc, char *argv[])
{
   QApplication app(argc, argv);

   QWidget* widget = new QWidget();

   widget->setWindowFlags(Qt::FramelessWindowHint);

   widget->show();

   widget->move(10, 10);

   return app.exec();
}



More information about the Qt4-feedback mailing list