diff options
| author | Jeff Carr <[email protected]> | 2023-04-26 01:59:42 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-04-26 01:59:42 -0500 |
| commit | 7af6242cbfbd2d18461415e8421146f94093e8ca (patch) | |
| tree | 0bfdbc452b83cef498d32ad813bd28f0d2dbc149 /toolkit/gocui/debug.go | |
| parent | 4b9b381bcf02c212d72f55d4738943941e843250 (diff) | |
gocui: closer to working layout
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'toolkit/gocui/debug.go')
| -rw-r--r-- | toolkit/gocui/debug.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolkit/gocui/debug.go b/toolkit/gocui/debug.go index 9b57b08..e3f3586 100644 --- a/toolkit/gocui/debug.go +++ b/toolkit/gocui/debug.go @@ -32,7 +32,7 @@ func (w *cuiWidget) showWidgetPlacement(b bool, s string) { s1 += fmt.Sprintf("s/n (%2d,%2d) (%2d,%2d) ", w.startW, w.startH, w.nextW, w.nextH) s1 += fmt.Sprintf("size (%2d,%2d) ", w.realWidth, w.realHeight) s1 += fmt.Sprintf("gocui=(%2d,%2d)(%2d,%2d,%2d,%2d)", - w.gocuiSize.width, w.gocuiSize.height, + w.gocuiSize.Width(), w.gocuiSize.Height(), w.gocuiSize.w0, w.gocuiSize.h0, w.gocuiSize.w1, w.gocuiSize.h1) log(b, s1, s, w.widgetType, ",", w.name) // , "text=", w.text) } |
