Skip to content

Commit

Permalink
Fix print pattern type
Browse files Browse the repository at this point in the history
  • Loading branch information
andydotxyz committed Jul 25, 2023
1 parent fb2bca0 commit c16eee9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion widget/tree.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func NewTreeWithData(data binding.DataTree, createItem func(bool) fyne.CanvasObj
func(i TreeNodeID, branch bool, o fyne.CanvasObject) {
item, err := data.GetItem(i)
if err != nil {
fyne.LogError(fmt.Sprintf("Error getting data item %d", i), err)
fyne.LogError(fmt.Sprintf("Error getting data item %s", i), err)
return
}
updateItem(item, branch, o)
Expand Down

0 comments on commit c16eee9

Please sign in to comment.