def make_share_control() -> Gtk.CheckButton:
can_share = os.path.exists('/sys/module/v4l2loopback')
control = Gtk.CheckButton(
- label='Share Webcam', sensitive=can_share, active=can_share)
+ label='Share Webcam', sensitive=can_share)
control.set_margin_start(20)
return control