diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-11-21 23:21:39 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-11-21 23:21:39 -0600 |
commit | 444ac1fed900609b42c26cc5405a7c85ad65246a (patch) | |
tree | 1f39db8d3d7b435268e80fe03817cfa2d5dbdec0 /src/widgets | |
parent | b11ba445cccfa2cb9e5e6c09131d6e32c32392a6 (diff) | |
download | qt3-444ac1fed900609b42c26cc5405a7c85ad65246a.tar.gz qt3-444ac1fed900609b42c26cc5405a7c85ad65246a.zip |
Repaint QComboBox on drop-down dismissal
This relates to Bug 1489
Diffstat (limited to 'src/widgets')
-rw-r--r-- | src/widgets/qcombobox.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/widgets/qcombobox.cpp b/src/widgets/qcombobox.cpp index 2e5d56d..2a74b2a 100644 --- a/src/widgets/qcombobox.cpp +++ b/src/widgets/qcombobox.cpp @@ -1687,6 +1687,8 @@ void QComboBox::popDownListBox() repaint( FALSE ); } d->poppedUp = FALSE; + + update(); } |