Skip to content

Commit 6cbee33

Browse files
authored
Merge pull request #4451 from Starwort/master
Fix #4450
2 parents cd9867e + f0edc1b commit 6cbee33

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/browser/renderer/shared/CustomGlyphs.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -383,10 +383,10 @@ export const powerlineDefinitions: { [index: string]: IVectorShape } = {
383383
// Upper right triangle
384384
'\u{E0BE}': { d: 'M-.5,-.5 L1.5,1.5 L1.5,-.5', type: VectorType.FILL }
385385
};
386-
// Backslash separator redundant
387-
powerlineDefinitions['\u{E0BB}'] = powerlineDefinitions['\u{E0B9}'];
388386
// Forward slash separator redundant
389-
powerlineDefinitions['\u{E0BF}'] = powerlineDefinitions['\u{E0BD}'];
387+
powerlineDefinitions['\u{E0BB}'] = powerlineDefinitions['\u{E0BD}'];
388+
// Backslash separator redundant
389+
powerlineDefinitions['\u{E0BF}'] = powerlineDefinitions['\u{E0B9}'];
390390

391391
/**
392392
* Try drawing a custom block element or box drawing character, returning whether it was

0 commit comments

Comments
 (0)