summaryrefslogtreecommitdiff
path: root/src/depot_gui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/depot_gui.cpp')
-rw-r--r--src/depot_gui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/depot_gui.cpp b/src/depot_gui.cpp
index 14d90acd6..ef4947d34 100644
--- a/src/depot_gui.cpp
+++ b/src/depot_gui.cpp
@@ -961,14 +961,14 @@ struct DepotWindow : Window {
ResizeDepotButtons(this);
}
- virtual bool OnCTRLStateChange()
+ virtual EventState OnCTRLStateChange()
{
if (this->sel != INVALID_VEHICLE) {
_cursor.vehchain = _ctrl_pressed;
this->InvalidateWidget(DEPOT_WIDGET_MATRIX);
}
- return true;
+ return ES_HANDLED;
}
};