Using the same logic as listbox, extend tklib tooltip to work with ttk::treeview.
Don't know how to update the doc, but here's some demo code
pack [::ttk::treeview .tree -height 15 -show tree]
foreach txt {first second third} {
set id [.tree insert {} end -text "$txt item" -open 1]
::tooltip::tooltip .tree -item $id "tooltip for $txt item"
for {set i 0} {$i < 3} {incr i} {
set child [.tree insert $id end -text "child $i"]
::tooltip::tooltip .tree -item $child "tooltip for child $i"
}
}
patch for tklib::tooltip to work with treeview
Good plan this.