summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client/widgets/combobox.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/widgets/combobox.cc b/client/widgets/combobox.cc
index 53a80e2..b600c0f 100644
--- a/client/widgets/combobox.cc
+++ b/client/widgets/combobox.cc
@@ -220,7 +220,7 @@ bool ComboBox::eventFilter(QObject *obj, QEvent *event)
{
if(ignoreChangeEvents == true) return Widget::eventFilter(obj, event);
- if(combotype == SELECT) {
+ if(combotype == SELECT && obj == combobox->lineEdit()) {
if(event->type() == QEvent::MouseButtonRelease) {
if(enabled()) combobox->showPopup();
}