In another old topic a user (sorry, can't remember who) find a workaround: select save mode, then change the value of the kit, then go back to load mode and select ok. That way you can choose the kit you want without loading other when you scroll to choose the value. Another option I have found is to change the code in menu.c like this: if(menu_activePage == LOAD_PAGE || menu_activePage == SAVE_PAGE) { if (buttonHandler_getShift()) { menu_saveOptions.state = SAVE_STATE_EDIT_PRESET_NR; uint8_t z = parameter_values[PAR_ACTIVE_STEP]; menu_handleLoadSaveMenu(z-menu_currentPresetNr[menu_saveOptions.what], btnClicked); menu_saveOptions.state = SAVE_STATE_OK; }else{ menu_handleLoadSaveMenu(inc, btnClicked); } } else if(inc!=0) { the official code
with this change if you hold shift and press the encoder while on load or save page the current selected step value will define the kit to load or save.
Comments
select save mode, then change the value of the kit, then go back to load mode and select ok. That way you can choose the kit you want without loading other when you scroll to choose the value.
Another option I have found is to change the code in menu.c like this:
if(menu_activePage == LOAD_PAGE || menu_activePage == SAVE_PAGE) {
if (buttonHandler_getShift()) {
menu_saveOptions.state = SAVE_STATE_EDIT_PRESET_NR;
uint8_t z = parameter_values[PAR_ACTIVE_STEP];
menu_handleLoadSaveMenu(z-menu_currentPresetNr[menu_saveOptions.what], btnClicked);
menu_saveOptions.state = SAVE_STATE_OK;
}else{
menu_handleLoadSaveMenu(inc, btnClicked);
}
} else if(inc!=0) {
the official code
with this change if you hold shift and press the encoder while on load or save page the current selected step value will define the kit to load or save.