mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 02:28:34 +01:00
extHost.protocol should not depend on extHostTypes, #70319
This commit is contained in:
@@ -118,7 +118,7 @@ export class ExtHostEditors implements ExtHostEditorsShape {
|
||||
if (data.options) {
|
||||
this._onDidChangeTextEditorOptions.fire({
|
||||
textEditor: textEditor,
|
||||
options: data.options
|
||||
options: { ...data.options, lineNumbers: TypeConverters.TextEditorLineNumbersStyle.to(data.options.lineNumbers) }
|
||||
});
|
||||
}
|
||||
if (data.selections) {
|
||||
|
||||
Reference in New Issue
Block a user