Skip to content

Commit

Permalink
Merge pull request #1239 from gullradriel/recon-gui-fix
Browse files Browse the repository at this point in the history
fix gui glitches
  • Loading branch information
eried committed Jul 5, 2023
2 parents d750afe + 82ba35c commit 89e8956
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions firmware/application/apps/ui_recon.cpp
Expand Up @@ -731,7 +731,7 @@ ReconView::ReconView(NavigationView& nav)
text_cycle.set_text("1");
text_max.set("/1");
button_scanner_mode.set_style(&Styles::white);
button_scanner_mode.set_text("MSEARCH");
button_scanner_mode.set_text("MANUAL");
file_name.set_style(&Styles::white);
file_name.set("MANUAL RANGE RECON");
desc_cycle.set_style(&Styles::white);
Expand Down Expand Up @@ -776,7 +776,7 @@ ReconView::ReconView(NavigationView& nav)
if (scanner_mode) {
file_name.set_style(&Styles::red);
button_scanner_mode.set_style(&Styles::red);
button_scanner_mode.set_text("SCANNER");
button_scanner_mode.set_text("SCAN");
} else {
file_name.set_style(&Styles::blue);
button_scanner_mode.set_style(&Styles::blue);
Expand Down Expand Up @@ -808,7 +808,7 @@ ReconView::ReconView(NavigationView& nav)
} else {
scanner_mode = true;
button_scanner_mode.set_style(&Styles::red);
button_scanner_mode.set_text("SCANNER");
button_scanner_mode.set_text("SCAN");
button_scanner_mode.set_text("REMOVE");
}
frequency_file_load(true);
Expand Down Expand Up @@ -930,7 +930,7 @@ void ReconView::frequency_file_load(bool stop_all_before) {
file_name.set_style(&Styles::red);
button_scanner_mode.set_style(&Styles::red);
desc_cycle.set_style(&Styles::red);
button_scanner_mode.set_text("SCANNER");
button_scanner_mode.set_text("SCAN");
} else {
file_name.set_style(&Styles::blue);
button_scanner_mode.set_style(&Styles::blue);
Expand Down
2 changes: 1 addition & 1 deletion firmware/application/apps/ui_recon_settings.hpp
Expand Up @@ -135,7 +135,7 @@ class ReconSetupViewMore : public View {
Checkbox checkbox_auto_record_locked{
{1 * 8, 132},
3,
"auto record locked periods"};
"record locked periods"};
};

class ReconSetupView : public View {
Expand Down

0 comments on commit 89e8956

Please sign in to comment.