diff options
| author | Craig Jennings <c@cjennings.net> | 2026-02-03 08:51:41 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-02-03 08:51:47 -0600 |
| commit | 22aad558eebf578fab6c841cda9d8e890e332de4 (patch) | |
| tree | 18ad8afa117af5dd619f053e5df648c0b98e334c /modules | |
| parent | 38e8d904415a72867578320fc744e196b3b5f673 (diff) | |
| download | dotemacs-22aad558eebf578fab6c841cda9d8e890e332de4.tar.gz dotemacs-22aad558eebf578fab6c841cda9d8e890e332de4.zip | |
fix(video-recording): use generic 'Built-in Audio' label
Renamed 'Built-in Laptop Audio' to 'Built-in Audio' since PCI audio
devices are used on both laptops and desktops.
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/video-audio-recording.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/video-audio-recording.el b/modules/video-audio-recording.el index 5c9b7f40..e44f83c8 100644 --- a/modules/video-audio-recording.el +++ b/modules/video-audio-recording.el @@ -294,7 +294,7 @@ Returns alist of (device-name . (mic-source . monitor-source))." (cond ((string-match-p "usb.*[Jj]abra" base-name) "Jabra SPEAK 510 USB") ((string-match-p "^usb-" base-name) "USB Audio Device") - ((string-match-p "^pci-" base-name) "Built-in Laptop Audio") + ((string-match-p "^pci-" base-name) "Built-in Audio") ((string-match-p "^[0-9A-Fa-f:]+$" base-name) "Bluetooth Headset") (t base-name)))) (push (cons friendly-name pair) result)))) |
