Georg

Results 10 comments of Georg

It does not seem to fix anything ![image](https://github.com/AllenDang/giu/assets/18027367/a0036b0f-dbf8-4897-b68e-26d288d1557a)

So you suggest making this https://github.com/AllenDang/giu/blob/304f0b9ed27bd1e4e246308b2326900c3a26f5fd/StyleSetter.go#L16 a slice of fonts and maybe adding a new function like this https://github.com/AllenDang/giu/blob/304f0b9ed27bd1e4e246308b2326900c3a26f5fd/Style.go#L43 which takes a slice of fonts and just calls `PushFont` for...

Diff of changes in `core.pyi` for example (very long!) ```diff --- wx_old/core.pyi 2025-07-24 04:24:54.717307698 +0200 +++ wx_new/core.pyi 2025-07-24 04:55:47.737796704 +0200 @@ -4684,7 +4684,7 @@ """ @staticmethod - def GetFromPoint(pt: Point)...

> Diff of changes in `core.pyi` for example (very long!) There are some dubious looking changes, in some of the .pyi files, but i think they result from preexisting wrong/unhelpfull...

I also plan to make some improvements to the `EventHandler.Bind()` method(s) and possibly add some type hints to `agw.aui` files. Would you prefer separate PRs or one big(ger) PR? And...

> > Build is failing on Python 3.9. I think you have to use `typing.Union` since the `|` operator was added in Python 3.10 and we still support Python 3.9....

> The only difference I would see if if we didn't have infrastructure to package the .pyi files yet, or before Python 3.14. Now, with 3.14, the typing annotations will...

> > > I also plan to make some improvements to the `EventHandler.Bind()` method(s) and possibly add some type hints to `agw.aui` files. Would you prefer separate PRs or one...

I think what's missing for this PR are the second and third checkboxes in the description with the 3rd one being pretty important i think, as this leads to different...

I think these should be it: ```console $ rg --no-ignore-vcs '_param_\d:' wx/ ❮❮ wx/grid.pyi 2148: def SetCornerLabelValue(self, _param_0: str) -> None: 2524: def SetCornerLabelValue(self, _param_0: str) -> None: 2864: def...