summaryrefslogtreecommitdiff
path: root/debug.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2019-06-02 13:40:44 -0700
committerJeff Carr <[email protected]>2019-06-02 13:40:44 -0700
commitc7402944c58285a3fd38b2b4678fdc97ada768a2 (patch)
treefdab4570083eb3e8cbdd76818528f00450e9be63 /debug.go
parent99792943c67cf580e066fe28c8b7f4796d304ce2 (diff)
finally cleaned out all protobuf references
this effort is almost done being 'cleaned' of the code I started with. This library is not perfect and lacks features from andlabs/ui but it will work for our purposes Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'debug.go')
-rw-r--r--debug.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/debug.go b/debug.go
index daf3143..8920b5e 100644
--- a/debug.go
+++ b/debug.go
@@ -3,7 +3,7 @@ package gui
import "log"
import "time"
import "fmt"
-import "reflect"
+// import "reflect"
// import "github.com/andlabs/ui"
// import _ "github.com/andlabs/ui/winmanifest"
@@ -24,7 +24,8 @@ func WatchGUI() {
for i, window := range Data.Windows {
log.Println("watchGUI() Data.Windows", i, "Action =", window.Action)
for name, abox := range window.BoxMap {
- log.Println("\twatchGUI() BOX name =", name)
+ log.Printf("\twatchGUI() BOX mapname=%-12s abox.Name=%-12s", name, abox.Name)
+ /*
if (name == "SplashArea3") {
log.Println("\t\twatchGUI() BOX abox =", reflect.TypeOf(abox))
win := abox.Window
@@ -36,6 +37,7 @@ func WatchGUI() {
// time.Sleep(2000 * time.Millisecond)
// os.Exit(0)
}
+ */
}
}
count = 0