diff options
author | Bernard Teo <btzy1996@hotmail.com> | 2021-05-31 17:02:21 +0800 |
---|---|---|
committer | Patric Stout <github@truebrain.nl> | 2021-09-18 11:17:49 +0200 |
commit | 20717ededfe6cc370f9c35cff5b8d732105975f7 (patch) | |
tree | 15d728555207dd46afddae8c74b4a6dd625138d2 /src/widgets | |
parent | 6a6dbbaad2007f5a3b4b57c6b0ff44a899fb0ff8 (diff) | |
download | openttd-20717ededfe6cc370f9c35cff5b8d732105975f7.tar.xz |
Feature: Button to open order window from VL_SHARED_ORDERS window
Diffstat (limited to 'src/widgets')
-rw-r--r-- | src/widgets/vehicle_widget.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/widgets/vehicle_widget.h b/src/widgets/vehicle_widget.h index 698a32bcf..954e72f70 100644 --- a/src/widgets/vehicle_widget.h +++ b/src/widgets/vehicle_widget.h @@ -61,7 +61,10 @@ enum VehicleDetailsWidgets { /** Widgets of the #VehicleListWindow class. */ enum VehicleListWidgets { - WID_VL_CAPTION, ///< Caption of window. + WID_VL_CAPTION, ///< Caption of window (for non shared orders windows). + WID_VL_CAPTION_SHARED_ORDERS, ///< Caption of window (for shared orders windows). + WID_VL_CAPTION_SELECTION, ///< Selection for caption. + WID_VL_ORDER_VIEW, ///< Button to open order window (for shared orders windows). WID_VL_GROUP_ORDER, ///< Group order. WID_VL_GROUP_BY_PULLDOWN, ///< Group by dropdown list. WID_VL_SORT_ORDER, ///< Sort order. |