summaryrefslogtreecommitdiff
path: root/smartwindow/new.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-07 10:38:17 -0600
committerJeff Carr <[email protected]>2024-01-07 10:38:17 -0600
commitef6eb7a96aa4aee7c16ba5e7320bde4ffd79acc0 (patch)
treebba27c349418d5d799d86fdbadcf275327e08c26 /smartwindow/new.go
parent259b4bdb408fd234cf1c76f94463a85d87fdadb6 (diff)
error window v0.1
error box starts doing something start a window for errors to fix more status cleanups & housecleaning Signed-off-by: Jeff Carr <[email protected]> Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'smartwindow/new.go')
-rw-r--r--smartwindow/new.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/smartwindow/new.go b/smartwindow/new.go
index 016d10b..35e9df5 100644
--- a/smartwindow/new.go
+++ b/smartwindow/new.go
@@ -2,8 +2,6 @@ package smartwindow
import (
"go.wit.com/log"
-
- "go.wit.com/gui/gadgets"
)
func New() *SmartWindow {
@@ -25,8 +23,4 @@ func (sw *SmartWindow) InitWindow() {
sw.ready = true
return
}
-
- log.Log(WARN, "Creating the Window")
- sw.window = gadgets.NewBasicWindow(sw.parent, sw.title)
- sw.ready = true
}