@swesterfeld commented on this pull request.
In bse/bsebus.cc:
> + if (BSE_IS_SONG (parent))
+ {
+ BseSong *song = BSE_SONG (parent);
+ return song->solo_bus == self;
+ }
+ return false;
+}
+
+void
+BusImpl::solo (bool is_solo)
+{
+ BseBus *self = as<BseBus*>();
+
+ if (solo() != is_solo)
+ {
+ auto prop = "solo";
Fixed.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.