Skip to content

Commit

Permalink
p.mem looked strange with capital P
Browse files Browse the repository at this point in the history
  • Loading branch information
u-foka committed Jun 9, 2023
1 parent e306cdc commit 46d3b1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion firmware/application/apps/ui_debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ DebugMenuView::DebugMenuView(NavigationView& nav) {
{"Peripherals", ui::Color::dark_cyan(), &bitmap_icon_peripherals, [&nav]() { nav.push<DebugPeripheralsMenuView>(); }},
{"Temperature", ui::Color::dark_cyan(), &bitmap_icon_temperature, [&nav]() { nav.push<TemperatureView>(); }},
{"Buttons Test", ui::Color::dark_cyan(), &bitmap_icon_controls, [&nav]() { nav.push<DebugControlsView>(); }},
{"P.mem", ui::Color::dark_cyan(), &bitmap_icon_memory, [&nav]() { nav.push<DebugPmemView>(); }},
{"p.mem", ui::Color::dark_cyan(), &bitmap_icon_memory, [&nav]() { nav.push<DebugPmemView>(); }},
});
set_max_rows(2); // allow wider buttons
}
Expand Down
2 changes: 1 addition & 1 deletion firmware/application/apps/ui_debug.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ class DebugPmemView : public View {
DebugPmemView(NavigationView& nav);
void focus() override;
bool on_encoder(const EncoderEvent delta) override;
std::string title() const override { return "P.mem"; }
std::string title() const override { return "p.mem"; }

private:
struct pmem_data {
Expand Down

0 comments on commit 46d3b1a

Please sign in to comment.