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();
}
_______________________________________________
Qt4-preview-feedback mailing list
[email protected]
http://lists.trolltech.com/mailman/listinfo/qt4-preview-feedback