mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
make autoscroll a bit easier to use, fix missing measure lines when moving the editor pane, slight optimisation(?) of canvas-simplerect (seems to make a difference to me), fix dirty pixels when moving regions across tracks sometimes. some code cleanup.
git-svn-id: svn://localhost/ardour2/trunk@885 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
9b578bfff2
commit
cb17e3cc81
7 changed files with 53 additions and 71 deletions
|
|
@ -98,7 +98,7 @@ RouteUI::~RouteUI()
|
|||
delete mute_menu;
|
||||
}
|
||||
|
||||
gint
|
||||
bool
|
||||
RouteUI::mute_press(GdkEventButton* ev)
|
||||
{
|
||||
if (!ignore_toggle) {
|
||||
|
|
@ -159,7 +159,7 @@ RouteUI::mute_press(GdkEventButton* ev)
|
|||
return true;
|
||||
}
|
||||
|
||||
gint
|
||||
bool
|
||||
RouteUI::mute_release(GdkEventButton* ev)
|
||||
{
|
||||
if (!ignore_toggle) {
|
||||
|
|
@ -173,7 +173,7 @@ RouteUI::mute_release(GdkEventButton* ev)
|
|||
return true;
|
||||
}
|
||||
|
||||
gint
|
||||
bool
|
||||
RouteUI::solo_press(GdkEventButton* ev)
|
||||
{
|
||||
if (!ignore_toggle) {
|
||||
|
|
@ -253,7 +253,7 @@ RouteUI::solo_press(GdkEventButton* ev)
|
|||
return true;
|
||||
}
|
||||
|
||||
gint
|
||||
bool
|
||||
RouteUI::solo_release(GdkEventButton* ev)
|
||||
{
|
||||
if (!ignore_toggle) {
|
||||
|
|
@ -269,7 +269,7 @@ RouteUI::solo_release(GdkEventButton* ev)
|
|||
return true;
|
||||
}
|
||||
|
||||
gint
|
||||
bool
|
||||
RouteUI::rec_enable_press(GdkEventButton* ev)
|
||||
{
|
||||
if (!ignore_toggle && is_track() && rec_enable_button) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue