diff options
| author | Jeff Carr <[email protected]> | 2019-06-02 13:40:44 -0700 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2019-06-02 13:40:44 -0700 |
| commit | c7402944c58285a3fd38b2b4678fdc97ada768a2 (patch) | |
| tree | fdab4570083eb3e8cbdd76818528f00450e9be63 /debug.go | |
| parent | 99792943c67cf580e066fe28c8b7f4796d304ce2 (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.go | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 |
