axnode: add hr properties

This commit is contained in:
Pierre Tachoire
2026-01-15 14:15:46 +01:00
parent d126d2a0f9
commit 6d0f991c17

View File

@@ -296,6 +296,10 @@ pub const Writer = struct {
try self.writeAXProperty(.{ .name = .focusable, .value = .{ .booleanOrUndefined = true } }, w);
}
},
.hr => {
try self.writeAXProperty(.{ .name = .settable, .value = .{ .booleanOrUndefined = true } }, w);
try self.writeAXProperty(.{ .name = .orientation, .value = .{ .token = "horizontal" } }, w);
},
else => {},
},
else => |tag| {