Benedek Dévényi

Results 446 comments of Benedek Dévényi

Yupp, that was my first idea when I started with ttk themes. But then it became "just" the Azure theme, because I realized how much work it would be just...

They **do** support antialiasing on every platform! 🤔 Just take a look at one of my themes, they are all antialiased. Tk supports displaying antialiased images, and since most ttk...

Yup, it's not yet complete. But basically it just uses the [TkPath](https://github.com/avarga/tkpath) project (an alternative canvas widget that uses native backends for drawing), instead of Tk's original canvas widget. So...

```python import tukaan from tukaan.gfx import Brush, Canvas, Gradient, Pen, Transform app = tukaan.App() c = Canvas(app) c.grid() rect = Canvas.Rect( c, 30, 30, 80, 80, border_radius=10, brush=Brush(fill=Gradient.Linear(["#cc00ff", "#007fff"])), pen=Pen(color="#fff",...

Path is an SVG element originally. Basically it's a very powerful pen element with which you can draw lines, curves, arcs, and more. Documentation: https://developer.mozilla.org/en-US/docs/Web/SVG/Tutorial/Paths

> Is there a limit to how long/much they can scroll? Will it limit it to the length/width of the widgets inside? No, it won't.

Yes, I could implement some limit control, but I don't really see its benefit 🤔

Na yeah, neither thought I to scroll into infinity. Maybe I was a bit ambiguous. So it can only scroll until there's content, and not more (so that's why I...

@ParthJadhav Based on the error message he tries to run TkinterDesigner itself.