diff options
| author | Jeff Carr <[email protected]> | 2023-04-27 20:41:53 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-04-27 20:41:53 -0500 |
| commit | 9e285c7affa3257a46e85acde6dc64a9c781b728 (patch) | |
| tree | 7e957fc0b5f6e631e762baffe292828e318e0910 /toolkit/gocui/common.go | |
| parent | 6f441738061b0528e86183402474ddb1cdf3c77a (diff) | |
gocui: grid width fixed
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'toolkit/gocui/common.go')
| -rw-r--r-- | toolkit/gocui/common.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolkit/gocui/common.go b/toolkit/gocui/common.go index 93dfbb6..94b63b1 100644 --- a/toolkit/gocui/common.go +++ b/toolkit/gocui/common.go @@ -15,8 +15,8 @@ func makeWidget(a *toolkit.Action) *cuiWidget { w.b = a.B w.i = a.I w.s = a.S - w.x = a.X - w.y = a.Y + w.X = a.X + w.Y = a.Y t := len(w.text) |
