Re: configure tile treeview font



Okay, I just discovered that in Tile 0.7.8 there is a tag mechanism
for treeview widget items, which includes a -font attribute.
Unfortunately, on my system, the -font attribute doesn't seem to do
anything, whether I use the xpnative theme or any other theme. :(

Here is my test code. Have I done something wrong, or does the font
attribute not work (on Windows, at least)?

package require tile 0.7.8
toplevel .test
set tv [ttk::treeview .test.tv]
grid $tv
$tv tag configure newtag -font {{Times New Roman} 10} -background pink
$tv insert {} end -text "Test" -tags newtag


Aric

.