Hello,

I'm encountering a little problem,
as you cans see in the title i want to resize a windowed qwidget when i'm moving it.

of course i tried this
Qt Code:
  1. void mywidget::moveEvent ( QMoveEvent * event )
  2. {
  3. resize(100,100);
  4. }
To copy to clipboard, switch view to plain text mode 

but the window only resizes when i release the mouse

Does anybody can help me ?

thank you