Fix typo on NewTappableIcon function

This commit is contained in:
Michael Manganiello
2023-06-12 18:45:21 -07:00
committed by Drew Weymouth
parent c19edccf80
commit 39b17abd7d
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ type TappableIcon struct {
OnTapped func()
}
func NewTappbaleIcon(res fyne.Resource) *TappableIcon {
func NewTappableIcon(res fyne.Resource) *TappableIcon {
icon := &TappableIcon{}
icon.ExtendBaseWidget(icon)
icon.SetResource(res)