this repo has no description
13
fork

Configure Feed

Select the types of activity you want to include in your feed.

widgets(terminal): fix cursor showing

+4 -4
+4 -4
src/widgets/terminal/Terminal.zig
··· 204 204 } 205 205 } 206 206 207 - // if (self.mode.cursor) { 208 - win.setCursorShape(self.front_screen.cursor.shape); 209 - win.showCursor(self.front_screen.cursor.col, self.front_screen.cursor.row); 210 - // } else win.hideCursor(); 207 + if (self.mode.cursor) { 208 + win.setCursorShape(self.front_screen.cursor.shape); 209 + win.showCursor(self.front_screen.cursor.col, self.front_screen.cursor.row); 210 + } else win.hideCursor(); 211 211 } 212 212 213 213 pub fn tryEvent(self: *Terminal) ?Event {