Skip to content

Commit

Permalink
Merge pull request #101 from geon/master
Browse files Browse the repository at this point in the history
macos: Fixed build.
  • Loading branch information
zenith391 authored Nov 2, 2024
2 parents e3d7f41 + bae0c17 commit 2a5c7c5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/backends/macos/backend.zig
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,11 @@ pub const Label = struct {
self.peer.msgSend(void, "setStringValue:", .{AppKit.nsString(nullTerminatedText)});
}

pub fn setFont(self: *Label, font: lib.Font) void {
_ = self;
_ = font;
}

pub fn destroy(self: *Label) void {
_ = self;
}
Expand Down

0 comments on commit 2a5c7c5

Please sign in to comment.