mirror of
https://github.com/jhbruhn/eurorack.git
synced 2025-03-15 02:55:49 +00:00
Remove unused visible parameter from menu items, select part 0 as default on boot
This commit is contained in:
parent
cda0831b9d
commit
0fd1657c60
3 changed files with 3 additions and 4 deletions
|
@ -16,7 +16,6 @@ template <class T>
|
|||
class MenuItem : public AbstractMenuItem {
|
||||
private:
|
||||
const char* label;
|
||||
bool visible;
|
||||
T value;
|
||||
T step;
|
||||
char stringRepresentation[24];
|
||||
|
@ -24,7 +23,6 @@ class MenuItem : public AbstractMenuItem {
|
|||
protected:
|
||||
MenuItem(const char* _label, T _initialValue)
|
||||
: label(_label)
|
||||
, visible(true)
|
||||
, value(_initialValue) {};
|
||||
|
||||
virtual void to_string(char* buf) = 0;
|
||||
|
|
|
@ -14,7 +14,7 @@ class MainMenu {
|
|||
void render(u8g2_t* u8g2, int x, int y, int width, int height);
|
||||
|
||||
MainMenu()
|
||||
: activePartMenu(-1)
|
||||
: activePartMenu(0)
|
||||
, selectedPart(0) {};
|
||||
|
||||
private:
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
PartMenu::PartMenu()
|
||||
: item_voice_count("voice count", 1, 1, 4, 1)
|
||||
, item_voice_detail("voice detail", 1, 1, 4, 1)
|
||||
, item_midi_filter_enabled("MIDI filter", 0, "on", "off")
|
||||
, item_midi_filter_enabled("MIDI filter", 1, "on", "off")
|
||||
, item_midi_channel("MIDI channel", 0, 0, 100, 1)
|
||||
, item_midi_lowest_note("MIDI lowest", 0)
|
||||
, item_midi_highest_note("MIDI highest", 127)
|
||||
|
@ -39,6 +39,7 @@ bool PartMenu::back()
|
|||
bool PartMenu::enter()
|
||||
{
|
||||
menu.enter();
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue