diff options
author | noname <[email protected]> | 2025-03-07 17:42:02 +1100 |
---|---|---|
committer | noname <[email protected]> | 2025-03-07 17:42:02 +1100 |
commit | f40a5c5aa8a5242190464c30521e9aca8e8dc2f0 (patch) | |
tree | c7128b5027ecbe14c9df0d4fd4b956cf4bdae7ba /lib/sway/window.vala | |
parent | f77586bd467ac9d15068f6edfd6a1b856273c878 (diff) |
change indent to 4 spaces
Diffstat (limited to 'lib/sway/window.vala')
-rw-r--r-- | lib/sway/window.vala | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/sway/window.vala b/lib/sway/window.vala index f0e2f9a..012e76e 100644 --- a/lib/sway/window.vala +++ b/lib/sway/window.vala @@ -1,23 +1,23 @@ namespace AstalSway { - public class Window : Container { +public class Window : Container { public string app_id; public string shell; public int pid; public bool visible; public bool inhibit_idle; - + public Window() { - node_type = NodeType.WINDOW; + node_type = NodeType.WINDOW; } internal override void sync(Json.Object obj) { - app_id = obj.get_string_member("app_id"); - shell = obj.get_string_member("shell"); - pid = (int)obj.get_int_member("pid"); - visible = obj.get_boolean_member("visible"); - inhibit_idle = obj.get_boolean_member("inhibit_idle"); - base.sync(obj); + app_id = obj.get_string_member("app_id"); + shell = obj.get_string_member("shell"); + pid = (int)obj.get_int_member("pid"); + visible = obj.get_boolean_member("visible"); + inhibit_idle = obj.get_boolean_member("inhibit_idle"); + base.sync(obj); } - } +} } |