diff options
| author | Jeff Carr <[email protected]> | 2023-04-24 14:17:43 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-04-24 14:17:43 -0500 |
| commit | 7bb10dfb029313a9d1694a68fef2beca10ce858b (patch) | |
| tree | 60675838284639cfae3255935ac789a463ae4ec9 /toolkit/gocui/main.go | |
| parent | cd998e95c1bae4e5e31ef9dced6d8f3c0095d46e (diff) | |
gocui: try to make struct defaults work
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'toolkit/gocui/main.go')
| -rw-r--r-- | toolkit/gocui/main.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/toolkit/gocui/main.go b/toolkit/gocui/main.go index c3418a6..34cea92 100644 --- a/toolkit/gocui/main.go +++ b/toolkit/gocui/main.go @@ -13,7 +13,10 @@ import ( // to this toolkit from the wit/gui golang package func init() { log(logInfo, "Init() of awesome-gocui") - Set(&me, "default") + var test config + Set(&test, "default") + log(logNow, "Init() me.rawW", me.rawW) + // exit("test init()") me.defaultBehavior = true me.groupPadding = 4 |
