[pim/itinerary] src/app: PublicTransportPage: Fix showing details of departure stop
Kai Uwe Broulik <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 90cc2c52f0ee6db287364d5181151bb987d5d939 by Kai Uwe Broulik.
Committed on 26/07/2026 at 18:48.
Pushed by broulik into branch 'master'.
PublicTransportPage: Fix showing details of departure stop
M +1 -1 src/app/PublicTransportPage.qml
https://invent.kde.org/pim/itinerary/-/commit/90cc2c52f0ee6db287364d5181151bb987d5d939
diff --git a/src/app/PublicTransportPage.qml b/src/app/PublicTransportPage.qml
index 33a109ec2..b3458bcb3 100644
--- a/src/app/PublicTransportPage.qml
+++ b/src/app/PublicTransportPage.qml
@@ -151,7 +151,7 @@ DetailsPage {
onClicked: {
sheetDrawer.isArrival = false;
sheetDrawer.isDeparture = true;
- sheetDrawer.stop = root.journeySection.stopover(root.departureStopIndex);
+ sheetDrawer.stop = root.controller.journey.stopover(root.departureStopIndex);
sheetDrawer.popup();
}
}