diff --git a/plugins/feature/freqdisplay/freqdisplaygui.ui b/plugins/feature/freqdisplay/freqdisplaygui.ui
index 7a47f5a03..cf52a9460 100644
--- a/plugins/feature/freqdisplay/freqdisplaygui.ui
+++ b/plugins/feature/freqdisplay/freqdisplaygui.ui
@@ -17,7 +17,7 @@
- Frequency display
+ Frequency Display
@@ -64,6 +64,9 @@
0
+
+ Which channel to display frequency / power for
+
-
@@ -101,26 +104,6 @@
- -
-
-
- Font
-
-
-
- -
-
-
-
- 0
- 0
-
-
-
- Select font family for the frequency display
-
-
-
-
@@ -196,19 +179,16 @@
-
-
- F.dp
-
Decimal places for frequency (disabled when units is Hz)
+
+ Freq DP
+
-
-
- 45
-
Number of decimal places to show for the frequency value
@@ -225,19 +205,16 @@
-
-
- P.dp
-
Decimal places for power
+
+ Power DP
+
-
-
- 45
-
Number of decimal places to show for the power value
@@ -252,10 +229,30 @@
+ -
+
+
+ Font
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+ Select font family for the frequency display
+
+
+
-
- Qt::Horizontal
+ Qt::Orientation::Horizontal
diff --git a/plugins/feature/freqdisplay/freqdisplayplugin.cpp b/plugins/feature/freqdisplay/freqdisplayplugin.cpp
index 109997575..af3590515 100644
--- a/plugins/feature/freqdisplay/freqdisplayplugin.cpp
+++ b/plugins/feature/freqdisplay/freqdisplayplugin.cpp
@@ -12,7 +12,7 @@
const PluginDescriptor FreqDisplayPlugin::m_pluginDescriptor = {
FreqDisplay::m_featureId,
- QStringLiteral("Frequency display"),
+ QStringLiteral("Frequency Display"),
QStringLiteral("7.24.0"),
QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"),
diff --git a/plugins/feature/freqdisplay/freqdisplaysettings.cpp b/plugins/feature/freqdisplay/freqdisplaysettings.cpp
index 16b13688c..1d0b0a7b6 100644
--- a/plugins/feature/freqdisplay/freqdisplaysettings.cpp
+++ b/plugins/feature/freqdisplay/freqdisplaysettings.cpp
@@ -9,7 +9,7 @@ FreqDisplaySettings::FreqDisplaySettings()
void FreqDisplaySettings::resetToDefaults()
{
- m_title = "Frequency display";
+ m_title = "Frequency Display";
m_selectedChannel.clear();
m_workspaceIndex = -1;
m_geometryBytes.clear();
@@ -59,7 +59,7 @@ bool FreqDisplaySettings::deserialize(const QByteArray& data)
return false;
}
- d.readString(1, &m_title, "Frequency display");
+ d.readString(1, &m_title, "Frequency Display");
d.readString(2, &m_selectedChannel, "");
d.readS32(3, &m_workspaceIndex, -1);
d.readBlob(4, &m_geometryBytes);