diff options
| author | Jeff Carr <[email protected]> | 2025-09-11 15:23:17 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-11 15:23:17 -0500 |
| commit | ec661807da8b201cd51e544aee59e8de21aeb0df (patch) | |
| tree | e8c8878705d0d5c4051f99878d43f29b2da28ecc /doGui.go | |
| parent | 127f36ca1f82ca9c1945e08802a49e4f9e30d2b7 (diff) | |
switch over to using gitpb.Repo directly
Diffstat (limited to 'doGui.go')
| -rw-r--r-- | doGui.go | 34 |
1 files changed, 15 insertions, 19 deletions
@@ -5,27 +5,23 @@ package main // An app to submit patches for the 30 GO GUI repos -import ( - "os" - - "go.wit.com/gui" - "go.wit.com/lib/gadgets" - "go.wit.com/log" -) - func doGui() { - win := gadgets.NewGenericWindow("testing", "Current Conversations") - win.Custom = func() { - log.Warn("MAIN WINDOW CLOSE") - gui.StandardExit() - os.Exit(0) - } + win := makebasicWindow() + win.Show() + /* + win := gadgets.NewGenericWindow("testing", "Current Conversations") + win.Custom = func() { + log.Warn("MAIN WINDOW CLOSE") + gui.StandardExit() + os.Exit(0) + } - grid := win.Group.RawGrid() + grid := win.Group.RawGrid() - grid.NewLabel("label worked") - grid.NextRow() + grid.NewLabel("label worked") + grid.NextRow() - grid.NewButton("more", func() { - }) + grid.NewButton("more", func() { + }) + */ } |
