mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Fix negative starts when changing TOT offsets.
This commit is contained in:
@@ -128,8 +128,10 @@ class FlightPlanPropertiesGroup(QGroupBox):
|
||||
if self.negative_offset_checkbox.isChecked():
|
||||
offset = -offset
|
||||
self.flight.flight_plan.tot_offset = offset
|
||||
self.package_model.update_tot()
|
||||
self.update_departure_time()
|
||||
|
||||
def toggle_negative_offset(self) -> None:
|
||||
self.flight.flight_plan.tot_offset = -self.flight.flight_plan.tot_offset
|
||||
self.package_model.update_tot()
|
||||
self.update_departure_time()
|
||||
|
||||
Reference in New Issue
Block a user