13
0

Remove debugging printf

This commit is contained in:
Ben Loftis 2016-01-31 22:18:49 -06:00
parent 7d81ad1d68
commit 8821569f4a

View File

@ -77,10 +77,8 @@ Editor::keyboard_selection_begin (Editing::EditIgnoreOption ign)
framepos_t end = selection->time.end_frame(); //0 if no current selection framepos_t end = selection->time.end_frame(); //0 if no current selection
if ((_edit_point == EditAtPlayhead) && _session->transport_rolling()) { if ((_edit_point == EditAtPlayhead) && _session->transport_rolling()) {
printf("if you don't wait a second, this wil be wrong");
start = _session->audible_frame(); start = _session->audible_frame();
} else { } else {
printf("keyboard_selection_begin:: getting pref\n");
start = get_preferred_edit_position(ign); start = get_preferred_edit_position(ign);
} }