Skip to content

Commit

Permalink
Update Panel1Link.qml
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelscholle committed Nov 25, 2024
1 parent de29d61 commit 291cc0d
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions qml/ui/sidebar/Panel1Link.qml
Original file line number Diff line number Diff line change
Expand Up @@ -43,24 +43,24 @@ SideBarBasePanel{
}
}*/
MavlinkChoiceElement2{
id:edit_frequency_element
m_title: "Frequency"
m_param_id: mPARAM_ID_FREQUENCY
m_settings_model: _ohdSystemAirSettingsModel
id:scan_frequency_element
m_title: "Scan for Air"
m_param_id: mPARAM_ID_FREQUENCY_SCAN
m_settings_model: _ohdSystemGroundSettings
onGoto_previous: {
sidebar.regain_control_on_sidebar_stack()
sidebar.regain_control_on_sidebar_stack();
}
onGoto_next: {
scan_frequency_element.takeover_control()
edit_frequency_element.takeover_control()
}
}
MavlinkChoiceElement2{
id:scan_frequency_element
m_title: "Scan for Air"
m_param_id: mPARAM_ID_FREQUENCY_SCAN
m_settings_model: _ohdSystemGroundSettings
id:edit_frequency_element
m_title: "Frequency"
m_param_id: mPARAM_ID_FREQUENCY
m_settings_model: _ohdSystemAirSettingsModel
onGoto_previous: {
edit_frequency_element.takeover_control();
scan_frequency_element.takeover_control()
}
onGoto_next: {
edit_channel_width_element.takeover_control()
Expand Down

0 comments on commit 291cc0d

Please sign in to comment.