Trying to connect a StButton to a swipe signal, I get an error:
JS ERROR: Extension [email protected]: Error: No signal 'swipe' on object 'StButton
However, I can see the signal among Clutter Actions https://developer.gnome.org/clutter/stable/ClutterSwipeAction.html#ClutterSwipeAction.signals
Maybe it is not supported yet? O should I use another kind of StWidget to connecting to swipe signal?
StWidgetis aClutterActorwhich has noswipesignal.The signal you want to connect to is on a
ClutterSwipeActionso you probably want to create a new one, connect to the swipe signal on that object, then add the action to the actor.