Skip to content

Commit

Permalink
chore(hyprland): add 3 missing properties for Bind (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
Juhan280 authored Jan 12, 2025
1 parent 487f274 commit 692de64
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions lib/hyprland/structs.vala
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@ public class Bind : Object {
public bool mouse { get; construct set; }
public bool release { get; construct set; }
public bool repeat { get; construct set; }
public bool long_press { get; construct set; }
public bool non_consuming { get; construct set; }
public bool has_description { get; construct set; }
public int64 modmask { get; construct set; }
public string submap { get; construct set; }
public string key { get; construct set; }
public int64 keycode { get; construct set; }
public bool catch_all { get; construct set; }
public string description { get; construct set; }
public string dispatcher { get; construct set; }
public string arg { get; construct set; }

Expand All @@ -18,12 +21,15 @@ public class Bind : Object {
mouse = obj.get_boolean_member("mouse");
release = obj.get_boolean_member("release");
repeat = obj.get_boolean_member("repeat");
long_press = obj.get_member("longPress")?.get_boolean() ?? false;
non_consuming = obj.get_boolean_member("non_consuming");
has_description = obj.get_member("has_description")?.get_boolean() ?? false;
modmask = obj.get_int_member("modmask");
submap = obj.get_string_member("submap");
key = obj.get_string_member("key");
keycode = obj.get_int_member("keycode");
catch_all = obj.get_boolean_member("catch_all");
description = obj.get_member("description")?.get_string() ?? "";
dispatcher = obj.get_string_member("dispatcher");
arg = obj.get_string_member("arg");
}
Expand Down

0 comments on commit 692de64

Please sign in to comment.