ttkwidgets icon indicating copy to clipboard operation
ttkwidgets copied to clipboard

A collection of widgets for Tkinter's ttk extensions by various authors

Results 38 ttkwidgets issues
Sort by recently updated
recently updated
newest added

I think changing the license for this repository to LGPL would make this repository be used by more people and make tkinter more popular.😂 @RedFantom Regards. larryw3i

question

This code is inside a window class: `from ttkwidgets.font import askfont` `def font():` ` self.res = askfont()` ` if self.res[0] is not None:` ` self.label.configure(font=self.res[0])` ` print('««««««««', self.res[0])` ` #...

bug

So I've been using the `ttkwidgets` library for a quite a long time, and I have some improvement, and modification ideas I'd like to share here. Unfortunately(?), it got a...

enhancement
question
widget

``` variab = ttkac.AutocompleteEntryListbox(self.root, ["alpha", "BETA"]) ``` I just need to create a search with case insensitive ![image](https://user-images.githubusercontent.com/33920489/159741941-c2d19060-7179-4eb2-9373-8ba96896e259.png) that won't match at all, how to make that works?

Refer some Audio editor software, can we get value range from `Scale` or implement a new widgets? ![b](https://user-images.githubusercontent.com/32773605/156824227-a1d00b6a-cae4-47f9-85dc-db50ccad9343.jpg) e.g. get/return value range (start: -40, finish: 60) between two block on...

widget

The help document seems incorrect, type of `resolution`, `tick_resolution` should be `float`, [https://github.com/TkinterEP/ttkwidgets/blob/master/ttkwidgets/timeline.py#L100](https://github.com/TkinterEP/ttkwidgets/blob/master/ttkwidgets/timeline.py#L100) > :param resolution: Amount of time per pixel [s/pixel] > :type resolution: int > :param tick_resolution: Amount...

repo

### Fix docs: - type resolution: float - type tick_resolution: float

I was trying to use ttkwidgets in vscode, after installing it via pip which went properly. But vscode threw an error saying the module ttkwidgets is missing when I tried...

I am using checkboxTreeview, in princible this works as expected but I have some issues in highlighting the active row If I click on the row or use "selection_set". if...

I've made a few little improvements for `ttkwidgets.font`: - Default font family and size option for both `FontChooser` and `FontSelectFrame`, and all subwidgets - `AutocompleteEntryListbox` for `FontChooser` instead of a...

enhancement