diff options
| author | Jeff Carr <[email protected]> | 2019-05-29 11:07:14 -0700 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2019-05-29 11:07:14 -0700 |
| commit | 5a24461b59b49f622283951e1891559f6323a42d (patch) | |
| tree | 07724389e4e73f86657ff5364e9047c3ab8b205d /gui.go | |
| parent | be2a69804a5b8823d450ec5a478766c3d8f4acac (diff) | |
fix crash
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'gui.go')
| -rw-r--r-- | gui.go | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -232,11 +232,12 @@ func CreateFontButton(action string) *ButtonMap { var newBM ButtonMap newBM.Action = action newBM.FB = newB - newBM.AH = &myAH + newBM.AH = myAH Data.AllButtons = append(Data.AllButtons, newBM) newB.OnChanged(func (*ui.FontButton) { - mouseClick(&newBM) + log.Println("FontButton.OnChanged() START mouseClick(&newBM)", &newBM) + // mouseClick(&newBM) }) return &newBM } |
