From 09e519b715ba620522b42597a0282639cd1d28ee Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 15 Jan 2013 14:15:01 +0000 Subject: [PATCH] better error msg about autoloop location git-svn-id: svn://localhost/ardour2/branches/3.0@13842 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/session.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index a837a40e9c..0bcabbe7bd 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -1077,7 +1077,7 @@ Session::set_auto_loop_location (Location* location) } if (location->end() <= location->start()) { - error << _("Session: you can't use a mark for auto loop") << endmsg; + error << _("You cannot use this location for auto-loop because it has zero or negative length") << endmsg; return; }