diff options
| author | Pietro Gagliardi <[email protected]> | 2014-06-29 17:36:37 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-06-29 17:36:37 -0400 |
| commit | ccbe01e49ee973ddb4ba86c5d5c1367fabb1400b (patch) | |
| tree | 365067f61330f07b978fc4f5a9e38e91cd44c22a | |
| parent | 6c913bd3e62593ef5b37803eda923c0d88951896 (diff) | |
Made the "Title and Text" message box parented like it should have been. This will also allow me to evaluate what happens if message boxes that are parented are closed in non-reverse order.
| -rw-r--r-- | test/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/main.go b/test/main.go index bdeb38b..db01d15 100644 --- a/test/main.go +++ b/test/main.go @@ -538,7 +538,7 @@ func (handler *testwinhandler) Event(e Event, d interface{}) { invalidTest(handler.cb1, handler.lb1, nil, nil) case handler.bmsg: MsgBox("Title Only, no parent", "") - MsgBox("Title and Text", "parent") + handler.w.MsgBox("Title and Text", "parent") } // == TODO == // case CusotmEvent: |
