Skip to content

Commit

Permalink
Fix checked state display for buttons.
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil Mitchell committed Jan 12, 2023
1 parent 978e864 commit a98e9b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radio/src/gui/colorlcd/special_functions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -447,9 +447,9 @@ class SpecialFunctionButton : public Button
Button::checkEvents();
if (active != isActive()) {
active = !active;
check(active);
invalidate();
}
check(active);
}

// TODO: convert to use grid and lvgl objects (see model_outputs.cpp)
Expand Down

0 comments on commit a98e9b3

Please sign in to comment.