1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-25 11:34:09 -04:00

ATV Modulator: implemented 405 lines standard and added display of channel sample rate

This commit is contained in:
f4exb
2017-03-20 03:35:27 +01:00
parent b677138b45
commit 63510968b5
9 changed files with 137 additions and 16 deletions
+2 -2
View File
@@ -453,9 +453,9 @@ void MainWindow::createStatusBar()
{
QString qtVersionStr = QString("Qt %1 ").arg(QT_VERSION_STR);
#if QT_VERSION >= 0x050400
m_showSystemWidget = new QLabel("SDRangel v3.3.1 " + qtVersionStr + QSysInfo::prettyProductName(), this);
m_showSystemWidget = new QLabel("SDRangel v3.3.2 " + qtVersionStr + QSysInfo::prettyProductName(), this);
#else
m_showSystemWidget = new QLabel("SDRangel v3.3.1 " + qtVersionStr, this);
m_showSystemWidget = new QLabel("SDRangel v3.3.2 " + qtVersionStr, this);
#endif
statusBar()->addPermanentWidget(m_showSystemWidget);