1
Fork 0

Added ctrl-s shortcut.

This saves the current song. No feedback yet.
This commit is contained in:
EvanR 2009-09-21 19:18:41 -04:00
parent e418724ae0
commit 1b71a3e559
1 changed files with 3 additions and 0 deletions

View File

@ -83,6 +83,9 @@ int keyboard_handler(int e, fltk::Window* w){
//ui->keyboard->set_sustain(1);
press_play();
}
else if(E==combo('s',fltk::CTRL)){
save();
}
else if(E==combo('z',fltk::CTRL)){
do_undo();
ui->main_window->redraw();