mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-26 09:48:45 -05:00
Fix QT 5.15.4 map hang
This commit is contained in:
parent
75148f9659
commit
d0a94ede0c
@ -315,8 +315,8 @@ bool ADSBDemodSettings::deserialize(const QByteArray& data)
|
||||
d.readBlob(60, &m_geometryBytes);
|
||||
d.readBool(61, &m_hidden, false);
|
||||
d.readString(62, &m_checkWXAPIKey, "");
|
||||
#if QT_VERSION == QT_VERSION_CHECK(5, 15, 3)
|
||||
d.readString(63, &m_mapProvider, "mapboxgl"); // osm maps do not work in Qt 5.15.3 - https://github.com/f4exb/sdrangel/issues/1169
|
||||
#if QT_VERSION == QT_VERSION_CHECK(5, 15, 3) || QT_VERSION == QT_VERSION_CHECK(5, 15, 4)
|
||||
d.readString(63, &m_mapProvider, "mapboxgl"); // osm maps do not work in Qt 5.15.3/4 - https://github.com/f4exb/sdrangel/issues/1169
|
||||
#else
|
||||
d.readString(63, &m_mapProvider, "osm");
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user