diff options
| author | Isaac Freund <ifreund@ifreund.xyz> | 2020-03-24 21:13:56 +0100 |
|---|---|---|
| committer | Isaac Freund <ifreund@ifreund.xyz> | 2020-03-24 21:13:56 +0100 |
| commit | aaecef8c5c4609ef838c47271056d2b93695fb89 (patch) | |
| tree | b0d60eca370d379ecdc019ce63ddde674536dd3f /src/server.zig | |
| parent | 46fe1baa96d8d0f80dc9d5441e2c610a873081d8 (diff) | |
| download | river-aaecef8c5c4609ef838c47271056d2b93695fb89.tar.gz river-aaecef8c5c4609ef838c47271056d2b93695fb89.tar.xz | |
Make function names camelCase
This conforms with the zig style guidelines:
https://ziglang.org/documentation/master/#Style-Guide
Diffstat (limited to 'src/server.zig')
| -rw-r--r-- | src/server.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server.zig b/src/server.zig index abddf0d..7bc2daf 100644 --- a/src/server.zig +++ b/src/server.zig @@ -176,7 +176,7 @@ pub const Server = struct { pub fn desktop_view_at(self: *Self, lx: f64, ly: f64, surface: *?*c.wlr_surface, sx: *f64, sy: *f64) ?*View { var it = self.views.last; while (it) |node| : (it = node.prev) { - if (node.data.is_at(lx, ly, surface, sx, sy)) { + if (node.data.isAt(lx, ly, surface, sx, sy)) { return &node.data; } } |
