1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Don't wrap the Resource Usage display

This commit is contained in:
Chris Cummer 2018-11-27 15:26:10 -08:00
parent 55c5ae0ba6
commit 17f6b49450

View File

@ -25,8 +25,8 @@ func NewWidget(app *tview.Application) *Widget {
BarGraph: wtf.NewBarGraph(app, "Resource Usage", "resourceusage", false),
}
widget.View.SetWrap(true)
widget.View.SetWordWrap(true)
widget.View.SetWrap(false)
widget.View.SetWordWrap(false)
return &widget
}