We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bd8e89 commit 0b5b8d3Copy full SHA for 0b5b8d3
sway/ipc-json.c
@@ -914,6 +914,11 @@ static json_object *describe_libinput_device(struct libinput_device *device) {
914
case LIBINPUT_CONFIG_DRAG_LOCK_DISABLED:
915
drag_lock = "disabled";
916
break;
917
+#ifdef LIBINPUT_CONFIG_DRAG_LOCK_ENABLED_STICKY
918
+ case LIBINPUT_CONFIG_DRAG_LOCK_ENABLED_STICKY:
919
+ drag_lock = "enabled_sticky";
920
+ break;
921
+#endif
922
}
923
json_object_object_add(object, "tap_drag_lock",
924
json_object_new_string(drag_lock));
0 commit comments