You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/vs/editor/contrib/folding/browser/foldingDecorations.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -14,8 +14,8 @@ import { ThemeIcon } from 'vs/platform/theme/common/themeService';
14
14
15
15
exportconstfoldingExpandedIcon=registerIcon('folding-expanded',Codicon.chevronDown,localize('foldingExpandedIcon','Icon for expanded ranges in the editor glyph margin.'));
16
16
exportconstfoldingCollapsedIcon=registerIcon('folding-collapsed',Codicon.chevronRight,localize('foldingCollapsedIcon','Icon for collapsed ranges in the editor glyph margin.'));
17
-
exportconstfoldingManualCollapsedIcon=registerIcon('folding-manual-collapsed',Codicon.ellipsis,localize('foldingManualCollapedIcon','Icon for manually collapsed ranges in the editor glyph margin.'));
18
-
exportconstfoldingManualExpandedIcon=registerIcon('folding-manual-expanded',Codicon.ellipsis,localize('foldingManualExpandedIcon','Icon for manually expanded ranges in the editor glyph margin.'));
17
+
exportconstfoldingManualCollapsedIcon=registerIcon('folding-manual-collapsed',foldingCollapsedIcon,localize('foldingManualCollapedIcon','Icon for manually collapsed ranges in the editor glyph margin.'));
18
+
exportconstfoldingManualExpandedIcon=registerIcon('folding-manual-expanded',foldingExpandedIcon,localize('foldingManualExpandedIcon','Icon for manually expanded ranges in the editor glyph margin.'));
0 commit comments