mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-22 08:04:49 -05:00
APRS updates
Don't run windeployqt as redundant. Reduce chart margin size to give more area to graphs. Use latest packetmod URI.
This commit is contained in:
parent
d381568437
commit
3ccfa6db29
@ -60,8 +60,3 @@ target_link_libraries(${TARGET_NAME}
|
||||
|
||||
install(TARGETS ${TARGET_NAME} DESTINATION ${INSTALL_FOLDER})
|
||||
|
||||
if(WIN32)
|
||||
# Run deployqt for Charts etc
|
||||
include(DeployQt)
|
||||
windeployqt(${TARGET_NAME} ${SDRANGEL_BINARY_BIN_DIR} ${PROJECT_SOURCE_DIR}/aprs)
|
||||
endif()
|
||||
|
@ -519,18 +519,24 @@ APRSGUI::APRSGUI(PluginAPI* pluginAPI, FeatureUISet *featureUISet, Feature *feat
|
||||
ui->weatherChart->setRenderHint(QPainter::Antialiasing);
|
||||
m_weatherChart.addAxis(&m_weatherChartXAxis, Qt::AlignBottom);
|
||||
m_weatherChart.addAxis(&m_weatherChartYAxis, Qt::AlignLeft);
|
||||
m_weatherChart.layout()->setContentsMargins(0, 0, 0, 0);
|
||||
m_weatherChart.setMargins(QMargins(1, 1, 1, 1));
|
||||
|
||||
m_telemetryChart.legend()->hide();
|
||||
ui->telemetryChart->setChart(&m_telemetryChart);
|
||||
ui->telemetryChart->setRenderHint(QPainter::Antialiasing);
|
||||
m_telemetryChart.addAxis(&m_telemetryChartXAxis, Qt::AlignBottom);
|
||||
m_telemetryChart.addAxis(&m_telemetryChartYAxis, Qt::AlignLeft);
|
||||
m_telemetryChart.layout()->setContentsMargins(0, 0, 0, 0);
|
||||
m_telemetryChart.setMargins(QMargins(1, 1, 1, 1));
|
||||
|
||||
m_motionChart.legend()->hide();
|
||||
ui->motionChart->setChart(&m_motionChart);
|
||||
ui->motionChart->setRenderHint(QPainter::Antialiasing);
|
||||
m_motionChart.addAxis(&m_motionChartXAxis, Qt::AlignBottom);
|
||||
m_motionChart.addAxis(&m_motionChartYAxis, Qt::AlignLeft);
|
||||
m_motionChart.layout()->setContentsMargins(0, 0, 0, 0);
|
||||
m_motionChart.setMargins(QMargins(1, 1, 1, 1));
|
||||
|
||||
displaySettings();
|
||||
applySettings(true);
|
||||
|
@ -28,7 +28,7 @@ const QStringList APRSSettings::m_pipeTypes = {
|
||||
};
|
||||
|
||||
const QStringList APRSSettings::m_pipeURIs = {
|
||||
QStringLiteral("sdrangel.channelrx.packetdemod"),
|
||||
QStringLiteral("sdrangel.channel.packetdemod"),
|
||||
};
|
||||
|
||||
APRSSettings::APRSSettings()
|
||||
|
Loading…
Reference in New Issue
Block a user