handle some wire edge-cases & explanation

This commit is contained in:
Robin Gareus 2015-08-09 08:32:17 +02:00
parent 7800673329
commit 29b06768d5
2 changed files with 45 additions and 12 deletions

View file

@ -231,8 +231,9 @@ private:
void set_splitting(const bool splitting) { _splitting = splitting; }
private:
bool on_expose_event (GdkEventExpose *);
ARDOUR::ChanCount _sources; // signals available to feed into the processor(s)
ARDOUR::ChanCount _sinks; // combined number of outputs of the processor
/* the wire icon sits on top of every processor if needed */
ARDOUR::ChanCount _sources; // signals available (valid outputs from prev. processor)
ARDOUR::ChanCount _sinks; // actual inputs of this processor
bool _splitting;
};