summaryrefslogtreecommitdiff
path: root/src/order_gui.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2011-07-02 16:45:54 +0000
committerfrosch <frosch@openttd.org>2011-07-02 16:45:54 +0000
commit55a21a940d81b57b6c889a2839cb592690da404c (patch)
tree183bd9353e8cd51d8b99cc42e733941a22f4eb48 /src/order_gui.cpp
parent1bc1a42ea57c038df25f2e538bea77fa5451c30d (diff)
downloadopenttd-55a21a940d81b57b6c889a2839cb592690da404c.tar.xz
(svn r22620) -Change [FS#4651]: Enforce refit orders to be 'always go to depot' orders; service-only and stop-in-depot orders make no sense with refitting.
Diffstat (limited to 'src/order_gui.cpp')
-rw-r--r--src/order_gui.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/order_gui.cpp b/src/order_gui.cpp
index 8af15bb0b..1a16d0ded 100644
--- a/src/order_gui.cpp
+++ b/src/order_gui.cpp
@@ -980,6 +980,9 @@ public:
this->EnableWidget(ORDER_WIDGET_NON_STOP);
this->SetWidgetLoweredState(ORDER_WIDGET_NON_STOP, order->GetNonStopType() & ONSF_NO_STOP_AT_INTERMEDIATE_STATIONS);
}
+ /* Disable refit button if the order is no 'always go' order.
+ * However, keep the service button enabled for refit-orders to allow clearing refits (without knowing about ctrl). */
+ this->SetWidgetDisabledState(ORDER_WIDGET_REFIT, (order->GetDepotOrderType() & ODTFB_SERVICE) || (order->GetDepotActionType() & ODATFB_HALT));
this->SetWidgetLoweredState(ORDER_WIDGET_SERVICE, order->GetDepotOrderType() & ODTFB_SERVICE);
break;