From 7af6242cbfbd2d18461415e8421146f94093e8ca Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Wed, 26 Apr 2023 01:59:42 -0500 Subject: gocui: closer to working layout Signed-off-by: Jeff Carr --- toolkit/gocui/debug.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toolkit/gocui/debug.go') 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) } -- cgit v1.2.3