summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-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 5d5543f..ec260ea 100644
--- a/client/widgets/combobox.cc
+++ b/client/widgets/combobox.cc
@@ -199,7 +199,7 @@ bool ComboBox::eventFilter(QObject *obj, QEvent *event)
{
if(combotype == SELECT) {
if(event->type() == QEvent::MouseButtonRelease) {
- combobox->showPopup();
+ if(enabled()) combobox->showPopup();
}
}