remove misleading/incorrect comment
authorPaul Davis <paul@linuxaudiosystems.com>
Fri, 24 Feb 2017 09:18:57 +0000 (10:18 +0100)
committerPaul Davis <paul@linuxaudiosystems.com>
Fri, 24 Feb 2017 09:18:57 +0000 (10:18 +0100)
The previously-commented code is precisely what gets invoked
when solo state changes, and had nothing to do with actually
changing solo state in any way.

libs/surfaces/mackie/strip.cc

index 31a22ed88528d19aaa45e09b45ff4dd7e2ee1697..e7ce72cff872f6b8a330cd98794b24991c2ef9d7 100644 (file)
@@ -287,8 +287,6 @@ void
 Strip::notify_solo_changed ()
 {
        if (_stripable && _solo) {
-               // TODO use session->set_control(), subscribe to solo_control changes later
-               // call_surface->write(), see 9d8829f5bf
                _surface->write (_solo->set_state (_stripable->solo_control()->soloed() ? on : off));
        }
 }