Explorar el Código

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

main
Eric Amodio hace 7 años
padre
commit
c258d04381
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/system/string.ts

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

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

Cargando…
Cancelar
Guardar