** requires svn jack ** Hardware monitoring should work, some canvas scrolling speed improvement, don't disconcertingly churn the disk if jack auto-start fails, mixer visibility state is saved per session, slow down meters a bit (too much?), zoom cleanups, remove some unused variables, use rwlock for tempo state for no reason other than that it might be useful one day, fix compiler warning.

git-svn-id: svn://localhost/ardour2/trunk@873 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Nick Mainsbridge 2006-08-30 20:48:16 +00:00
parent 6535cd1b1d
commit a61f25dfe9
26 changed files with 296 additions and 266 deletions

View file

@ -34,7 +34,6 @@ Editor::hscrollbar_allocate (Gtk::Allocation &alloc)
bool
Editor::hscrollbar_button_press (GdkEventButton *ev)
{
edit_hscroll_dragging = true;
return true;
}
@ -42,11 +41,7 @@ bool
Editor::hscrollbar_button_release (GdkEventButton *ev)
{
if (session) {
if (edit_hscroll_dragging) {
// lets do a tempo redisplay only on button release, because it is dog slow
tempo_map_changed (Change (0));
edit_hscroll_dragging = false;
}
}
return true;