Make read only buffers feel more read only

This commit is contained in:
Conrad Irwin 2024-01-03 13:10:59 -07:00
parent 84171787a5
commit 6877bd4969
4 changed files with 29 additions and 4 deletions

View file

@ -8605,7 +8605,8 @@ impl Editor {
}
pub fn show_local_cursors(&self, cx: &WindowContext) -> bool {
self.blink_manager.read(cx).visible() && self.focus_handle.is_focused(cx)
(self.read_only(cx) || self.blink_manager.read(cx).visible())
&& self.focus_handle.is_focused(cx)
}
fn on_buffer_changed(&mut self, _: Model<MultiBuffer>, cx: &mut ViewContext<Self>) {