Ver código fonte

Fixes #135 - Full-width chars break gutter annotations (really)

main
Eric Amodio 7 anos atrás
pai
commit
c258d04381
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      src/system/string.ts

+ 1
- 1
src/system/string.ts Ver arquivo

@ -115,7 +115,7 @@ export namespace Strings {
count += getWidth(s[chars++]);
}
if (count > truncateTo) {
if (count >= truncateTo) {
chars--;
}

Carregando…
Cancelar
Salvar