summaryrefslogtreecommitdiff
path: root/gtk2_ardour/processor_box.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-08-09 08:32:17 +0200
committerRobin Gareus <robin@gareus.org>2015-08-09 08:37:28 +0200
commit29b06768d515e0faf98a04713f6451ae57b50efc (patch)
treecb6efa98ad55ad281a5a8610dc70ba4f3e74dd6a /gtk2_ardour/processor_box.h
parent780067332923bee59bc2040205ce905e2894f793 (diff)
handle some wire edge-cases & explanation
Diffstat (limited to 'gtk2_ardour/processor_box.h')
-rw-r--r--gtk2_ardour/processor_box.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk2_ardour/processor_box.h b/gtk2_ardour/processor_box.h
index 28c9af7d9d..0776feb2b9 100644
--- a/gtk2_ardour/processor_box.h
+++ b/gtk2_ardour/processor_box.h
@@ -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;
};