Skip to content

Commit 5e74da6

Browse files
authored
Restore previous behavior that "Indent Using Spaces" changes both indentSize and tabSize (microsoft#167883)
Fixes microsoft#167571: Restore previous behavior that "Indent Using Spaces" changes both indentSize and tabSize
1 parent 9b163c0 commit 5e74da6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/editor/contrib/indentation/browser/indentation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ export class ChangeIndentationSizeAction extends EditorAction {
252252
});
253253
} else {
254254
model.updateOptions({
255-
tabSize: this.insertSpaces ? undefined : pickedVal,
255+
tabSize: pickedVal,
256256
indentSize: pickedVal,
257257
insertSpaces: this.insertSpaces
258258
});

0 commit comments

Comments
 (0)