Is there a simple way to use QComboBox::showPopup()
without the animation making it instant?
Asked
Active
Viewed 523 times
0

László Papp
- 51,870
- 39
- 111
- 135

Jared Price
- 5,217
- 7
- 44
- 74
-
1duplicate ? http://stackoverflow.com/questions/14150748/removing-qcombobox-drop-down-animation – sim Dec 13 '13 at 18:35
-
Yes, that's what I needed QApplication::setEffectEnabled(Qt::UI_AnimateCombo, false);. Thanks! – Jared Price Dec 13 '13 at 22:09
1 Answers
1
See code:
QApplication::setEffectEnabled(Qt::UI_AnimateCombo, false);

Protomen
- 9,471
- 9
- 57
- 124

Jared Price
- 5,217
- 7
- 44
- 74