Hey guys,

I have the following code:

Qt Code:
  1. QApplication a(argc, argv);
  2. Widget w;
  3. w.setMask(QRegion(0,0,w.width(),w.height()));
  4. w.show();
  5. return a.exec();
To copy to clipboard, switch view to plain text mode 

The widget still shows up, without the title bars. I find this strange, can someone explain this to me? Thanks