From f52f23b12d63ce5dad5aee564915278795114878 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 30 Aug 2017 18:01:17 +0200 Subject: [PATCH] Fix scope in 4c077010a --- gtk2_ardour/template_dialog.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gtk2_ardour/template_dialog.cc b/gtk2_ardour/template_dialog.cc index 65fa30d58b..a5bbcd4089 100644 --- a/gtk2_ardour/template_dialog.cc +++ b/gtk2_ardour/template_dialog.cc @@ -434,10 +434,9 @@ TemplateManager::save_template_desc () XMLNode* desc = new XMLNode (X_("description")); XMLNode* dn = new XMLNode (X_("content"), desc_txt); desc->add_child_nocopy (*dn); + tree.root()->add_child_nocopy (*desc); } - tree.root()->add_child_nocopy (*desc); - if (!tree.write ()) { error << string_compose(X_("Could not write to template file \"%1\"."), file_path) << endmsg; return;