From 3c35ca140bc2e463682d51a5ab4ad5539ea42c08 Mon Sep 17 00:00:00 2001 From: Raphael <68374617+raphaelscholle@users.noreply.github.com> Date: Mon, 22 Jul 2024 19:42:19 +0200 Subject: [PATCH] add correct channel naming/number --- qml/ui/configpopup/openhd_settings/LinkQuickPanel.qml | 2 +- qml/ui/configpopup/openhd_settings/PopupAnalyzeChannels.qml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/qml/ui/configpopup/openhd_settings/LinkQuickPanel.qml b/qml/ui/configpopup/openhd_settings/LinkQuickPanel.qml index 41c59d0cd..247c1a9fb 100644 --- a/qml/ui/configpopup/openhd_settings/LinkQuickPanel.qml +++ b/qml/ui/configpopup/openhd_settings/LinkQuickPanel.qml @@ -245,7 +245,7 @@ Rectangle{ visible:false onClicked: { var text="Please select a channel / frequency free of noise and interference. The current loss / pollution stats below can help,"+ - "as well as the analyze channels feature or a frequency analyzer on your phone. DEF: Show OpenHD standard channels [1-5] only - they "+ + "as well as the analyze channels feature or a frequency analyzer on your phone. DEF: Show OpenHD standard channels [1-7] only - they "+ " often are free of wifi pollution and should be used." _messageBoxInstance.set_text_and_show(text) } diff --git a/qml/ui/configpopup/openhd_settings/PopupAnalyzeChannels.qml b/qml/ui/configpopup/openhd_settings/PopupAnalyzeChannels.qml index caa4596a7..361e7edf0 100644 --- a/qml/ui/configpopup/openhd_settings/PopupAnalyzeChannels.qml +++ b/qml/ui/configpopup/openhd_settings/PopupAnalyzeChannels.qml @@ -46,7 +46,7 @@ PopupBigGeneric{ ListModel{ id: model_filter - ListElement {title: "OHD [1-5]"; value: 0} + ListElement {title: "OHD [1-7]"; value: 0} ListElement {title: "All 2.4G"; value: 1} ListElement {title: "All 5.8G"; value: 2} } @@ -155,7 +155,7 @@ PopupBigGeneric{ //width: main_background.width>m_chart_view_minimum_width ? main_background.width : m_chart_view_minimum_width; width: { const screen_width = main_background.width-10; - // 2.4G and OHD 1-5 should always fit into screen size + // 2.4G and OHD 1-7 should always fit into screen size const filter=comboBoxWhichFrequencyToAnalyze.currentIndex; if(filter==0 || filter==1){ return screen_width;