audio clocks: focus-on-clock shortcut now works, scrolling and dragging know about x-offsets; cursor colors defined; click on an off clock no longer locates (time info box)

git-svn-id: svn://localhost/ardour2/branches/3.0@10709 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2011-11-20 16:38:51 +00:00
parent db24dda7a2
commit ae09a5812b
7 changed files with 39 additions and 10 deletions

View file

@ -177,7 +177,9 @@ TimeInfoBox::clock_button_release_event (GdkEventButton* ev, AudioClock* src)
}
if (ev->button == 1) {
_session->request_locate (src->current_time ());
if (!src->off()) {
_session->request_locate (src->current_time ());
}
return true;
}