summaryrefslogtreecommitdiff
path: root/src/window.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/window.cpp')
-rw-r--r--src/window.cpp10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/window.cpp b/src/window.cpp
index 81738aec3..e21edfc73 100644
--- a/src/window.cpp
+++ b/src/window.cpp
@@ -268,13 +268,9 @@ void Window::OnDropdownClose(Point pt, int widget, int index, bool instant_close
}
/* Raise the dropdown button */
- if (this->nested_array != NULL) {
- NWidgetCore *nwi2 = this->GetWidget<NWidgetCore>(widget);
- if ((nwi2->type & WWT_MASK) == NWID_BUTTON_DROPDOWN) {
- nwi2->disp_flags &= ~ND_DROPDOWN_ACTIVE;
- } else {
- this->RaiseWidget(widget);
- }
+ NWidgetCore *nwi2 = this->GetWidget<NWidgetCore>(widget);
+ if ((nwi2->type & WWT_MASK) == NWID_BUTTON_DROPDOWN) {
+ nwi2->disp_flags &= ~ND_DROPDOWN_ACTIVE;
} else {
this->RaiseWidget(widget);
}