13
0

Notice edits made to spinbuttons via numbers on the keyboard. Fixes #3413.

git-svn-id: svn://localhost/ardour2/branches/3.0@8250 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2010-12-11 23:59:34 +00:00
parent ccb7a5a794
commit 0600486857

View File

@ -111,6 +111,13 @@ EditNoteDialog::run ()
return r;
}
/* These calls mean that if a value is entered using the keyboard
it will be returned by the get_value_as_int()s below.
*/
_channel.update ();
_pitch.update ();
_velocity.update ();
_region_view->start_note_diff_command (_("edit note"));
bool had_change = false;