From: dooglus Date: Sun, 26 Oct 2008 20:02:46 +0000 (+0000) Subject: Improve the error messages created by the canvas chooser widget. X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=09ce12868c7a144e4f6fe48790323d4e44fe591c;p=synfig.git Improve the error messages created by the canvas chooser widget. git-svn-id: https://synfig.svn.sourceforge.net/svnroot/synfig@2137 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/synfig-studio/trunk/src/gtkmm/widget_canvaschooser.cpp b/synfig-studio/trunk/src/gtkmm/widget_canvaschooser.cpp index e151644..7ca1ba9 100644 --- a/synfig-studio/trunk/src/gtkmm/widget_canvaschooser.cpp +++ b/synfig-studio/trunk/src/gtkmm/widget_canvaschooser.cpp @@ -155,7 +155,7 @@ Widget_CanvasChooser::chooser_menu() } catch(std::runtime_error x) { - App::dialog_error_blocking(_("Error:Exception Thrown"),x.what()); + App::dialog_error_blocking(_("Error:Exception Thrown"),String(_("Error selecting canvas:\n\n")) + x.what()); set_value_(canvas); } catch(...)