jroimartin / gocui

Minimalist Go package aimed at creating Console User Interfaces.
BSD 3-Clause "New" or "Revised" License
9.92k stars 608 forks source link

Wrong layout when Title uses a different encoding #211

Closed kyai closed 4 years ago

kyai commented 4 years ago

https://github.com/jroimartin/gocui/blob/c055c87ae801372cd74a0839b972db4f7697ae5f/gui.go#L538

Try it:

func main() {
    s := "He─llo"
    for k, v := range s {
        fmt.Println(k, v)
    }
}
kyai commented 4 years ago

Fixed, request merge. #212