Fix Predrawn not drawing cursor

This commit is contained in:
Joscha 2023-04-17 09:38:00 +02:00
parent 242a1aed29
commit 59710c8162

View file

@ -55,6 +55,10 @@ impl Predrawn {
}; };
frame.write(pos, Styled::new(&cell.content, style)); frame.write(pos, Styled::new(&cell.content, style));
} }
if let Some(cursor) = self.buffer.cursor() {
frame.set_cursor(Some(cursor));
}
} }
} }