mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
Remove complexity from a lot of string display statements
This commit is contained in:
@@ -55,9 +55,9 @@ func (widget *Widget) Refresh() {
|
||||
}
|
||||
|
||||
if err != nil {
|
||||
widget.View.SetText(fmt.Sprintf("%s", err))
|
||||
widget.View.SetText(err.Error())
|
||||
} else {
|
||||
widget.View.SetText(fmt.Sprintf("%s", string(fileData)))
|
||||
widget.View.SetText(string(fileData))
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user