summaryrefslogtreecommitdiff
path: root/gui.go
diff options
context:
space:
mode:
Diffstat (limited to 'gui.go')
-rw-r--r--gui.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/gui.go b/gui.go
index 58a9bd2..407984f 100644
--- a/gui.go
+++ b/gui.go
@@ -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
}