Reputation: 37
I'm using QtAnimation using setStartValue(Rect) and setEndValue(Rect) I want to make it of fixed size after animation. How to proceed?
Upvotes: 2
Views: 287
Reputation: 32685
If you use QPropertyAnimation
, just connect it's finished()
signal to some slot and set a fixed size for the dialog there.
Upvotes: 2