💄
This commit is contained in:
parent
551c86f87a
commit
40bfdd38ae
1 changed files with 2 additions and 2 deletions
|
@ -127,7 +127,7 @@ impl BufferView {
|
||||||
});
|
});
|
||||||
ctx.observe(&display_map, Self::on_display_map_changed);
|
ctx.observe(&display_map, Self::on_display_map_changed);
|
||||||
|
|
||||||
let (selection_set_id, ops) = buffer.update(ctx, |buffer, ctx| {
|
let (selection_set_id, op) = buffer.update(ctx, |buffer, ctx| {
|
||||||
buffer.add_selection_set(
|
buffer.add_selection_set(
|
||||||
vec![Selection {
|
vec![Selection {
|
||||||
start: buffer.anchor_before(0).unwrap(),
|
start: buffer.anchor_before(0).unwrap(),
|
||||||
|
@ -719,7 +719,7 @@ impl BufferView {
|
||||||
.unwrap()
|
.unwrap()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn update_selections<'a>(&self, selections: Vec<Selection>, ctx: &mut ViewContext<Self>) {
|
fn update_selections(&self, selections: Vec<Selection>, ctx: &mut ViewContext<Self>) {
|
||||||
let op = self.buffer.update(ctx, |buffer, ctx| {
|
let op = self.buffer.update(ctx, |buffer, ctx| {
|
||||||
buffer
|
buffer
|
||||||
.update_selection_set(self.selection_set_id, selections, Some(ctx))
|
.update_selection_set(self.selection_set_id, selections, Some(ctx))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue