From daa274d12f2aa77965c3fd0f1d3f21afed6b7209 Mon Sep 17 00:00:00 2001 From: Nikolaus Gullotta Date: Fri, 23 Aug 2019 13:25:31 -0500 Subject: [PATCH] add name prop to MixerSnapshot root node --- libs/ardour/mixer_snapshot.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/ardour/mixer_snapshot.cc b/libs/ardour/mixer_snapshot.cc index 02734c4118..9e1d071e26 100644 --- a/libs/ardour/mixer_snapshot.cc +++ b/libs/ardour/mixer_snapshot.cc @@ -431,6 +431,7 @@ void MixerSnapshot::write(const string dir) node->set_property(X_("flags"), _flags); node->set_property(X_("favorite"), favorite); node->set_property(X_("modified-with"), last_modified_with); + node->set_property(X_("name"), label); XMLNode* child; child = node->add_child("Routes");