Fix #9702: Display order window for vehicle group on ctrl-click only when using shared orders (#9704)

pull/338/head
Bernard Teo 3 years ago committed by GitHub
parent f6886754ff
commit 0533b666b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -746,17 +746,23 @@ public:
NOT_REACHED();
}
if (v) {
if (_ctrl_pressed) {
if (this->grouping == GB_NONE) {
this->SelectGroup(v->group_id);
} else {
ShowOrdersWindow(v);
}
if (_ctrl_pressed && this->grouping == GB_SHARED_ORDERS) {
ShowOrdersWindow(v);
} else {
this->vehicle_sel = v->index;
if (_ctrl_pressed && this->grouping == GB_NONE) {
/*
* It only makes sense to select a group if not using shared orders
* since two vehicles sharing orders can be from different groups.
*/
this->SelectGroup(v->group_id);
}
SetObjectToPlaceWnd(SPR_CURSOR_MOUSE, PAL_NONE, HT_DRAG, this);
SetMouseCursorVehicle(v, EIT_IN_LIST);
_cursor.vehchain = true;
this->SetDirty();
}
}

Loading…
Cancel
Save