diff options
| author | Jeff Carr <[email protected]> | 2025-04-22 18:49:00 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-04-22 18:49:00 -0500 |
| commit | 4332b3d31a6973a42432d556ae6df3ef721a36fe (patch) | |
| tree | 4aa0513854c9778972bb2d637b9aee898302545f /windowCreate.go | |
| parent | 2c5701eecad39fd77010f1886d5ad4cd3ad2d34f (diff) | |
working on a droplet edit window
Diffstat (limited to 'windowCreate.go')
| -rw-r--r-- | windowCreate.go | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/windowCreate.go b/windowCreate.go index 900f7cd..448736f 100644 --- a/windowCreate.go +++ b/windowCreate.go @@ -31,25 +31,3 @@ func createWindow() *gadgets.GenericWindow { return createWindow } - -func editDropletWindow() *gadgets.GenericWindow { - editDropletWindow := gadgets.NewGenericWindow("Create Droplet", "settings") - editDropletWindow.Custom = func() { - log.Warn("create window close") - } - - grid := editDropletWindow.Group.RawGrid() - - gadgets.NewBasicEntry(grid, "memory") - grid.NextRow() - - grid.NewLabel("name") - grid.NewTextbox("something") - grid.NextRow() - - grid.NewButton("Start", func() { - log.Info("make a box") - }) - - return editDropletWindow -} |
