Is your feature request related to a problem? Please describe.
I have been using ttkbootstrap for a good while, and I can say that I really like it, but sometimes I feel it has some default choices made.
in the source code of tooltip the code use default justify=LEFT on line 129 without considering allowing the choice to change it. and you only need to add two lines to allow for it.
Is your feature request related to a problem? Please describe.
I have been using
ttkbootstrap
for a good while, and I can say that I really like it, but sometimes I feel it has some default choices made.in the source code of
tooltip
the code use defaultjustify=LEFT
on line129
without considering allowing the choice to change it. and you only need to add two lines to allow for it.Describe the solution you'd like
in the
__init__
arguments body (line 41):and then defining the attribute (line 70):
and then at
lbl
definition (line 129):Describe alternatives you've considered
or as an alterntive, you can assign
self
tolbl
and make it an attribute so it can be possible to access it and change its configuation.Additional context
https://github.com/israel-dryer/ttkbootstrap/blob/master/src/ttkbootstrap/tooltip.py