13
0

MIDI Draw: potential workaround for sticky menu items at startup

This commit is contained in:
Ben Loftis 2021-11-19 13:01:54 -06:00
parent 84111a343e
commit ec88635555

View File

@ -859,9 +859,13 @@ Editor::Editor ()
/* these are defaults; instant.xml will replace these with user's recent selection */ /* these are defaults; instant.xml will replace these with user's recent selection */
set_grid_to (GridTypeNone); set_grid_to (GridTypeNone);
set_draw_length_to (GridTypeBeat);
set_draw_velocity_to (82); RefPtr<RadioAction> ract = draw_length_action (GridTypeBeat);
set_draw_channel_to (0); ract->set_active();
ract = draw_velocity_action (82);
ract->set_active();
ract = draw_channel_action (0);
ract->set_active();
} }
Editor::~Editor() Editor::~Editor()