mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-16 05:11:49 -05:00
Merge pull request #2110 from dforsi/feature/my-position
Explain that GPS is not the only means to get the position of the station
This commit is contained in:
commit
20aed1b00d
@ -360,6 +360,7 @@ void MainCore::initPosition()
|
|||||||
m_positionSource = QGeoPositionInfoSource::createDefaultSource(this);
|
m_positionSource = QGeoPositionInfoSource::createDefaultSource(this);
|
||||||
if (m_positionSource)
|
if (m_positionSource)
|
||||||
{
|
{
|
||||||
|
qDebug() << "MainCore::initPosition: Using position source" << m_positionSource->sourceName();
|
||||||
connect(m_positionSource, &QGeoPositionInfoSource::positionUpdated, this, &MainCore::positionUpdated);
|
connect(m_positionSource, &QGeoPositionInfoSource::positionUpdated, this, &MainCore::positionUpdated);
|
||||||
#if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
|
#if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
|
||||||
connect(m_positionSource, &QGeoPositionInfoSource::updateTimeout, this, &MainCore::positionUpdateTimeout);
|
connect(m_positionSource, &QGeoPositionInfoSource::updateTimeout, this, &MainCore::positionUpdateTimeout);
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>324</width>
|
<width>324</width>
|
||||||
<height>201</height>
|
<height>219</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="font">
|
<property name="font">
|
||||||
@ -119,14 +119,14 @@
|
|||||||
<item row="4" column="0">
|
<item row="4" column="0">
|
||||||
<widget class="QLabel" name="autoUpdatePositionLabel">
|
<widget class="QLabel" name="autoUpdatePositionLabel">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Auto-update from GPS</string>
|
<string>Auto-update position</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="1" column="2">
|
<item row="1" column="2">
|
||||||
<widget class="QToolButton" name="gps">
|
<widget class="QToolButton" name="gps">
|
||||||
<property name="toolTip">
|
<property name="toolTip">
|
||||||
<string>Set position using GPS (if available)</string>
|
<string>Set position now using GPS (or other means if available)</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string/>
|
<string/>
|
||||||
|
Loading…
Reference in New Issue
Block a user