Color ports depending on the type of data (audio,video,midi) they carry

This commit is contained in:
Tom A. Wagner
2021-02-09 12:51:35 +01:00
parent 926829de22
commit ec8de4a4a7
3 changed files with 89 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
/// Graphical representation of a pipewire port.
pub struct Port {
pub(super) widget: gtk::Button,
pub widget: gtk::Button,
pub id: u32,
pub direction: pipewire::port::Direction,
}