summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_ui.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2005-12-06 16:21:06 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2005-12-06 16:21:06 +0000
commitdd455c894aed80a4aa73e4fa186d0b8419c105c8 (patch)
treea7bf0d965f53c921026a8b682b3aa43a5cf592b3 /gtk2_ardour/route_ui.cc
parentf04aa5e49a1633f6cf39b8bb1872725332370b52 (diff)
un-triple-buffer fastmeter (not finished), fix mixer strip name button, comment editor, +++
git-svn-id: svn://localhost/trunk/ardour2@175 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/route_ui.cc')
-rw-r--r--gtk2_ardour/route_ui.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/gtk2_ardour/route_ui.cc b/gtk2_ardour/route_ui.cc
index 68f6622e35..daf5fcba69 100644
--- a/gtk2_ardour/route_ui.cc
+++ b/gtk2_ardour/route_ui.cc
@@ -157,7 +157,7 @@ RouteUI::mute_press(GdkEventButton* ev)
}
- return stop_signal (*mute_button, "button-press-event");
+ return true;
}
gint
@@ -169,10 +169,9 @@ RouteUI::mute_release(GdkEventButton* ev)
// undo the last op
// because the press was the last undoable thing we did
_session.undo (1U);
- stop_signal (*mute_button, "button-release-event");
}
}
- return TRUE;
+ return true;
}
gint