Skip to content

Commit

Permalink
add correct channel naming/number
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelscholle committed Jul 22, 2024
1 parent 58cbec9 commit 3c35ca1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion qml/ui/configpopup/openhd_settings/LinkQuickPanel.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down
4 changes: 2 additions & 2 deletions qml/ui/configpopup/openhd_settings/PopupAnalyzeChannels.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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}
}
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 3c35ca1

Please sign in to comment.