Browse Source

Fixed bug with special characters not displaying properly

pull/1/head
Gregory Rudolph 5 years ago
parent
commit
0f095ccbdd
Signed by: rudi
GPG Key ID: EF64F3CBD1A1EBDD
  1. 2
      main.go

2
main.go

@ -98,7 +98,7 @@ func printToView(kbtui *gocui.Gui, viewName string, message string) { @@ -98,7 +98,7 @@ func printToView(kbtui *gocui.Gui, viewName string, message string) {
if err != nil {
return err
} else {
fmt.Fprintf(updatingView, message+"\n")
fmt.Fprintf(updatingView, "%s\n", message)
}
return nil
})

Loading…
Cancel
Save