1
0
mirror of https://github.com/Rudi9719/kbtui.git synced 2026-03-22 08:47:24 +00:00

Fixed bug with special characters not displaying properly

This commit is contained in:
2019-09-18 20:25:04 -04:00
parent 24bdebd7d8
commit 0f095ccbdd

View File

@ -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
})