summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-11-21 23:21:39 -0600
committerSlávek Banko <slavek.banko@axis.cz>2015-12-15 19:54:02 +0100
commit92cad529ea598e195afbeb046df517b98e143dff (patch)
tree1bea32f7fcc3f1e50d7324ff3cff8e2011228432
parentb4bff05ee3260a25b5125deb835ccab9d747ed8f (diff)
downloadqt3-92cad529ea598e195afbeb046df517b98e143dff.tar.gz
qt3-92cad529ea598e195afbeb046df517b98e143dff.zip
Repaint QComboBox on drop-down dismissal
This relates to Bug 1489 (cherry picked from commit 444ac1fed900609b42c26cc5405a7c85ad65246a)
-rw-r--r--src/widgets/qcombobox.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/widgets/qcombobox.cpp b/src/widgets/qcombobox.cpp
index 1da559c..d74b982 100644
--- a/src/widgets/qcombobox.cpp
+++ b/src/widgets/qcombobox.cpp
@@ -1685,6 +1685,8 @@ void QComboBox::popDownListBox()
repaint( FALSE );
}
d->poppedUp = FALSE;
+
+ update();
}