mirror of
https://github.com/arabianq/pipewire-soundpad.git
synced 2026-04-28 06:21:23 +00:00
fix: update input device properties to output for capture_MONO
This commit is contained in:
@@ -165,8 +165,8 @@ pub async fn get_all_devices() -> Result<(Vec<AudioDevice>, Vec<AudioDevice>), B
|
|||||||
input_device.input_fr = Some(port)
|
input_device.input_fr = Some(port)
|
||||||
}
|
}
|
||||||
"capture_MONO" => {
|
"capture_MONO" => {
|
||||||
input_device.input_fl = Some(port.clone());
|
input_device.output_fl = Some(port.clone());
|
||||||
input_device.input_fr = Some(port);
|
input_device.output_fr = Some(port);
|
||||||
}
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user