TBTR: Adjust config buttons/text in main window

Clarify refit and depot options
Adjust layout
This commit is contained in:
Jonathan G Rennison
2023-08-26 23:59:22 +01:00
parent 8dc635b516
commit 3b8d8aeb6a
11 changed files with 89 additions and 69 deletions

View File

@@ -160,7 +160,7 @@ public:
bool IsReplaceOldOnly() const { return this->replace_old_only; }
void ToggleReuseDepotVehicles() { this->reuse_depot_vehicles = !this->reuse_depot_vehicles; }
void ToggleKeepRemainingVehicles() { this->keep_remaining_vehicles = !this->keep_remaining_vehicles; }
void ToggleRefitAsTemplate() { this->refit_as_template = !this->refit_as_template; }
void SetRefitAsTemplate(bool as_template) { this->refit_as_template = as_template; }
void ToggleReplaceOldOnly() { this->replace_old_only = !this->replace_old_only; }
bool IsPrimaryVehicle() const { return this->IsFrontEngine(); }