multiwindow: Call update() after swap

Change-Id: Ic2c26339bce9fe92b2ccc730c72f53ce94397b78
Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
This commit is contained in:
Tor Arne Vestbø 2016-08-31 18:21:18 +02:00 committed by Tor Arne Vestbø
parent 44fec65624
commit 880beb121e

View File

@ -83,8 +83,6 @@ public:
y += 1;
if (y > height() - 20)
y = 20;
update();
}
public slots:
@ -95,6 +93,8 @@ public slots:
framesSwapped = 0;
fpsTimer.restart();
}
update();
}
protected: