diff options
| author | Jeff Carr <[email protected]> | 2024-01-17 21:31:49 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-17 21:31:49 -0600 |
| commit | 841e6252c95244f0ee7faf2c01d33f69a8ab483a (patch) | |
| tree | ef400228622b87611168db2227269ba7fd56625d /gocui/view.go | |
| parent | ba95c13799740b5f55541fc5e8ab9f1d34f7e421 (diff) | |
common tree package for toolkitsv0.12.4
This update provides *lots* of toolkit updates. This will allow
the next step of debugging the gocui toolkit to make it work
again. There are new common routines for handling the plugin
channel communication
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'gocui/view.go')
| -rw-r--r-- | gocui/view.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gocui/view.go b/gocui/view.go index b88763c..912cf21 100644 --- a/gocui/view.go +++ b/gocui/view.go @@ -3,7 +3,6 @@ package main import ( "fmt" "errors" - "strconv" "bufio" "strings" @@ -60,7 +59,7 @@ func (n *node) showView() { if (w.cuiName == "") { log.Log(ERROR, "showView() w.cuiName was not set for widget", w) - w.cuiName = strconv.Itoa(n.WidgetId) + w.cuiName = string(n.WidgetId) } // if the gocui element doesn't exist, create it |
