From 938be21a173acb2435f41707f87660f746f7d7c7 Mon Sep 17 00:00:00 2001 From: GhostNaN <59353890+GhostNaN@users.noreply.github.com> Date: Tue, 25 Feb 2020 16:54:53 +0000 Subject: [PATCH] Minor fix - Hides the custom ALSA device to avoid selecting it --- ReVidiaGUI.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ReVidiaGUI.py b/ReVidiaGUI.py index 7bd0044..732eedc 100644 --- a/ReVidiaGUI.py +++ b/ReVidiaGUI.py @@ -732,6 +732,9 @@ def getDevice(self, firstRun, pulseAudio=False): defaultList.append('Default PulseAudio Input Device') itemList = defaultList + deviceList[0] + if 'Input: revidia_capture - ALSA' in itemList: # Hide custom ALSA device + itemList.remove('Input: revidia_capture - ALSA') + if not pulseAudio: device, ok = QInputDialog.getItem(self, "ReVidia", "Select Audio Device:", itemList, 0, False) else: # Auto select PulseAudio