From 545a7ac62734b0520e71d89ad4348fe9ba6bc014 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Sun, 5 Oct 2025 19:37:14 -0700 Subject: [PATCH] Spell "loopback" correctly --- srec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/srec.py b/srec.py index bacc1df..01b5a8c 100644 --- a/srec.py +++ b/srec.py @@ -106,7 +106,7 @@ def make_button(label: str, action: Callable[[ def make_share_control() -> Gtk.CheckButton: - can_share = os.path.exists('/sys/module/v4l2looback') + can_share = os.path.exists('/sys/module/v4l2loopback') control = Gtk.CheckButton( label='Share Webcam', sensitive=can_share, active=can_share) control.set_margin_start(20) -- 2.50.1