Sync with gocui's API

In gocui, *Gui.Ascii has been renamed to *Gui.ASCII to make golint
happy.
This commit is contained in:
Roi Martin 2017-02-12 14:17:09 +01:00
parent 6326145735
commit f33d305d2b

View File

@ -1051,7 +1051,7 @@ func main() {
log.Panicln(err)
}
if runtime.GOOS == "windows" && runewidth.IsEastAsian() {
g.Ascii = true
g.ASCII = true
}
app := &App{history: make([]*Request, 0, 31)}