Skip to content

Commit

Permalink
fix small ui bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphael committed Nov 22, 2023
1 parent b6a0445 commit 7d053e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion qml/ui/configpopup/ConfigPopup.qml
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,6 @@ Rectangle {
// On localhost, QOpenHD "automatically" connects due to udp localhost method
ConfigPopupSidebarButton{
id: connect_button
visible: !_ohdSystemAir.is_alive && !_ohdSystemGround.is_alive
m_icon_text: "\uf6ff"
m_description_text: "Connect"
m_selection_index: 5
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 @@ -80,7 +80,7 @@ Rectangle{
color: closeButton.hovered ? "darkgrey" : "lightgrey"
}
onClicked: {
if (_ohdSystemGround.is_alive && _ohdSystemGround.wb_gnd_operating_mode == 1) {
if (_ohdSystemGround.is_alive && _ohdSystemGround.wb_gnd_operating_mode == 2) {
_qopenhd.show_toast("STILL ANALYZING, PLEASE WAIT ...");
return;
}
Expand All @@ -90,7 +90,7 @@ Rectangle{
}

RowLayout{
visible:false
visible:true
Layout.alignment: Qt.AlignTop | Qt.AlignRight
ButtonIconInfo{
Layout.alignment: Qt.AlignLeft
Expand Down

0 comments on commit 7d053e0

Please sign in to comment.