Removed back button to enable spamming until this screen (quick back)

This commit is contained in:
CommanderRedYT
2022-01-01 15:02:45 +01:00
parent bde4524086
commit 607e6ef2c2

View File

@ -192,7 +192,6 @@ void StatusDisplay::buttonPressed(espgui::Button button)
switch (button)
{
using espgui::Button;
case Button::Left:
case Button::Right:
switchScreen<MainMenu>();
break;
@ -206,6 +205,8 @@ void StatusDisplay::buttonPressed(espgui::Button button)
case Button::Down:
switchScreen<MetersDisplay>();
break;
default:
break;
}
}