diff --git a/plugin/microphone_selection/microphone_selection.py b/plugin/microphone_selection/microphone_selection.py index 4fb92a3dd4..8b5cf4c93b 100644 --- a/plugin/microphone_selection/microphone_selection.py +++ b/plugin/microphone_selection/microphone_selection.py @@ -58,7 +58,7 @@ def microphone_selection_hide(): def microphone_select(index: int): """Selects a micropohone""" if 1 <= index and index <= len(microphone_device_list): - actions.speech.set_microphone(microphone_device_list[index - 1]) + actions.sound.set_microphone(microphone_device_list[index - 1]) app.notify(f"Activating microphone: {microphone_device_list[index - 1]}") gui.hide()