Skip to content

Commit

Permalink
fix: double click to selection also need to share cursor (#1446)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jocs committed Mar 1, 2024
1 parent 60d94a3 commit c6ae623
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -423,7 +423,7 @@ export class TextSelectionRenderManager extends RxDisposable implements ITextSel
},
];

this.addTextRanges(textRanges);
this.addTextRanges(textRanges, false);
}
}

Expand Down Expand Up @@ -456,7 +456,7 @@ export class TextSelectionRenderManager extends RxDisposable implements ITextSel
},
];

this.addTextRanges(textRanges);
this.addTextRanges(textRanges, false);
}

// Handle pointer down.
Expand Down

0 comments on commit c6ae623

Please sign in to comment.