Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelscholle committed Nov 24, 2024
1 parent 497efc2 commit f023ca2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/telemetry/models/camerastreammodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ QString CameraStreamModel::camera_codec_to_string(int camera_codec)
QString CameraStreamModel::camera_recording_mode_to_string(int recording_mode)
{
if(recording_mode<0)return " n/a";
if(recording_mode==0)return " off";
if(recording_mode==1)return " on";
if(recording_mode==0)return " off";
if(recording_mode==1)return " on";
return "error";
}

Expand Down
2 changes: 1 addition & 1 deletion qml/ui/sidebar/Panel4Recording.qml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ SideBarBasePanel {
anchors.centerIn: parent
anchors.leftMargin: 40
text: {
var tmp = " Status";
var tmp = " Status";
if (!_ohdSystemAir.is_alive) {
return tmp + " disabled ";
}
Expand Down

0 comments on commit f023ca2

Please sign in to comment.