StationSVGHelper: raise track connection limit

Big stations easily exceed 100 track connections.
This meant that some of them were not displayed.
1000 seems more reasonable limit.
This commit is contained in:
Filippo Gentile 2023-01-06 14:47:18 +01:00
parent 3672395be5
commit 8667ea96fe
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ bool loadStationLabels(sqlite3pp::database &db, db_id stationId, ssplib::Station
q.prepare("SELECT g.id,g.out_track_count,g.name,g.side FROM station_gates g"
" WHERE g.station_id=?"
" ORDER BY g.name"
" LIMIT 100");
" LIMIT 1000");
q.bind(1, stationId);
//const QString labelFmt = QStringLiteral("%1 (%2)");