use correct property when PresentationInfo::color is set from XML
authorPaul Davis <paul@linuxaudiosystems.com>
Fri, 1 Jul 2016 22:14:21 +0000 (18:14 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Fri, 1 Jul 2016 22:14:21 +0000 (18:14 -0400)
libs/ardour/presentation_info.cc

index 654a80f6cede68415eeaab03d9aae2e91c5ffc98..fe094dae6bb667d5a41311b2d690fe2d9a66cb4a 100644 (file)
@@ -128,7 +128,7 @@ PresentationInfo::set_state (XMLNode const& node, int /* version */)
        if ((prop = node.property (X_("color"))) != 0) {
                color_t c = atoi (prop->value());
                if (c != _color) {
-                       pc.add (Properties::order);
+                       pc.add (Properties::color);
                        _color = c;
                }
        }
@@ -175,7 +175,6 @@ PresentationInfo::color_set () const
         * this is heuristic, but it is fairly realistic. who will ever set
         * a color to completely transparent black? only the constructor ..
         */
-
        return _color != 0;
 }