refactor: remove unused error return in Plane.put_yx and Plane.cursor_move_yx

This commit is contained in:
CJ van den Berg 2026-01-13 16:19:47 +01:00
parent 52dfc1e706
commit 2d5288aa6f
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
16 changed files with 46 additions and 46 deletions

View file

@ -68,7 +68,7 @@ pub fn render(self: *Self, theme: *const Widget.Theme) bool {
_ = self.plane.putstr(line) catch {};
if (self.plane.cursor_y() >= self.view_rows - 1)
return false;
self.plane.cursor_move_yx(-1, 0) catch {};
self.plane.cursor_move_yx(-1, 0);
self.plane.cursor_move_rel(1, 0) catch {};
}
return false;