Hello.
I have to set particular font size for tree items’s text. I tried to set callback in setHtmlProvider method like this:
tree.setHtmlProvider(e -> "<p style=\"font-size:10px\">" + e.getData() + "</p>");
But this callback is never calling. Have no idea why. What is proper way to set font for Tree items’s text?