I wanted to animate the QWidget maximumWidth in order to change thd widgets size in a layout with animation, but it does not work. I have tried to do the following:
QPropertyAnimation *animation1 = new QPropertyAnimation(m_textEditor2, "maximumWidth");
animation1->setStartValue(0);
animation1->setEndValue(100);
animation1->start();
EDIT: For minimumWidth property the animation works, but for maximumWidth - no. Thus I have opened a bug on bugreports.qt.nokia.com. Here it is.