summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/depot_gui.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/depot_gui.cpp b/src/depot_gui.cpp
index 7d95f6844..54e9519a3 100644
--- a/src/depot_gui.cpp
+++ b/src/depot_gui.cpp
@@ -1019,9 +1019,10 @@ struct DepotWindow : Window {
if (this->sel != INVALID_VEHICLE) {
_cursor.vehchain = _ctrl_pressed;
this->InvalidateWidget(DEPOT_WIDGET_MATRIX);
+ return ES_HANDLED;
}
- return ES_HANDLED;
+ return ES_NOT_HANDLED;
}
};