13
0

Bogus commit to comment commit 12689:

Small patch to fix the "Solo" global button in the transport section of Mackie's.

git-svn-id: svn://localhost/ardour2/branches/3.0@12690 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Rodrigo Severo 2012-06-12 21:09:53 +00:00
parent 32541205dd
commit 0d002fb231

View File

@ -210,7 +210,6 @@ DeviceInfo::set_state (const XMLNode& node, int /* version */)
}
/* name is mandatory */
if ((child = node.child ("Name")) != 0) {
if ((prop = child->property ("value")) != 0) {
_name = prop->value();
@ -220,7 +219,6 @@ DeviceInfo::set_state (const XMLNode& node, int /* version */)
}
/* strip count is mandatory */
if ((child = node.child ("Strips")) != 0) {
if ((prop = child->property ("value")) != 0) {
if ((_strip_cnt = atoi (prop->value())) == 0) {