summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-10-26 22:01:01 +0000
committerDavid Robillard <d@drobilla.net>2009-10-26 22:01:01 +0000
commitf0d0ad687d74d1fe87799dcb4e9427f4e5681638 (patch)
tree33e6e056c97a04aa0f71e57fd1baf5e661a2c530 /gtk2_ardour
parent7d9e782c3a81e4485a8cdd3f0cf637553f79c0f3 (diff)
Make automation error non-fatal so we can actually work on this stuff...
git-svn-id: svn://localhost/ardour2/branches/3.0@5931 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/route_time_axis.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/route_time_axis.cc b/gtk2_ardour/route_time_axis.cc
index cc39c6fb80..a3238fc95e 100644
--- a/gtk2_ardour/route_time_axis.cc
+++ b/gtk2_ardour/route_time_axis.cc
@@ -1871,7 +1871,7 @@ RouteTimeAxisView::add_processor_automation_curve (boost::shared_ptr<Processor>
ProcessorAutomationNode* pan;
if ((pan = find_processor_automation_node (processor, what)) == 0) {
- fatal << _("programming error: ")
+ error << _("programming error: ")
<< string_compose (X_("processor automation curve for %1:%2 not registered with track!"),
processor->name(), what)
<< endmsg;