Fix bug in waypoint tab

Seems like I gave some inaccurate feedback -_-
This commit is contained in:
Raffson 2024-12-17 23:48:48 +01:00
parent e02698d8a8
commit 8f384b35dc
No known key found for this signature in database
GPG Key ID: B0402B2C9B764D99

View File

@ -138,7 +138,7 @@ class QFlightWaypointList(QTableView):
self._last_waypoint, waypoint self._last_waypoint, waypoint
) )
time = self._last_tot + timedelta time = self._last_tot + timedelta
else: elif time is None:
return "" return ""
self.update_last_tot(time) self.update_last_tot(time)
self._last_waypoint = waypoint self._last_waypoint = waypoint