X-Git-Url: http://git.scottworley.com/srec/blobdiff_plain/5d55db5fcef6054553b83ca693980740914913e0..545a7ac62734b0520e71d89ad4348fe9ba6bc014:/srec.py 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)