israel-dryer / ttkbootstrap

A supercharged theme extension for tkinter that enables on-demand modern flat style themes inspired by Bootstrap.
MIT License
1.98k stars 393 forks source link

You forgot to add rowheight in the Treeview's TAG OPTIONS #603

Open gtgor opened 4 weeks ago

gtgor commented 4 weeks ago

Desktop (please complete the following information):

class Treeview(Widget, tkinter.XView, tkinter.YView): """Ttk Treeview widget displays a hierarchical collection of items.

Each item has a textual label, an optional image, and an optional list
of data values. The data values are displayed in successive columns
after the tree label."""

def __init__(self, master=None, **kw):
    """Construct a Ttk Treeview with parent master.

    STANDARD OPTIONS

        class, cursor, style, takefocus, xscrollcommand,
        yscrollcommand

    WIDGET-SPECIFIC OPTIONS

        columns, displaycolumns, height, padding, selectmode, show

    ITEM OPTIONS

        text, image, values, open, tags

    TAG OPTIONS

        foreground, background, font, image
    """
    Widget.__init__(self, master, "ttk::treeview", kw)

Describe the bug

You forgot to add rowheight in the Treeview's TAG OPTIONS

To Reproduce

No response

Expected behavior

No response

Screenshots

No response

Additional context

No response