Andrea Gavana

Results 28 comments of Andrea Gavana

No specific reason. Very many years ago it seemed like an ok idea, but there shouldn’t be any specific limitations per se - except for the speed at which the...

We have exactly the same issue - two different users on five different machines. We optimistically upgraded to 3.3.14 (Windows 10, x64) and boom, our access to GitHub via GitHub...

@takashiyoshida : it works for us using 3.3.9 (signing in through GitHub Desktop via web page). As far as I can see, 3.3.9 is about 3 months old.

See here: https://github.com/wxWidgets/Phoenix/issues/627#issuecomment-354219493 On Wed, 13 Sept 2023 at 09:24, Knurrdachs ***@***.***> wrote: > *Operating system*: Win10 Pro > *wxPython version & source*: wxPython 4.2.1, pypi > *Python version &...

This is because PersistentControls predates SpinCtrlDouble by a few years… that said, implementing support for it is super simple, given the existing implementations for SpinCtrl and FloatSpin. I’m sure Robin...

@swt2c : this seems the usual story of `self.Bind` vs. `self.widget.Bind` : https://wiki.wxpython.org/self.Bind%20vs.%20self.button.Bind I believe it can be closed.

@swt2c : I believe this one can be closed.

I haven’t tried your code yet, and maybe I’m misunderstanding what you’re trying to accomplish, but is there any reason why you’re not considering the simpler approach of using only...

I would suggest posting a sample application showing the problem - I kind of understand what you’re trying to do but it’s difficult to help without a reproducer (or more...

See if this may give you some inspiration - maybe it will, maybe it won't. ```python import wx class EventPropagator(wx.EvtHandler): def __init__(self, old_handler): wx.EvtHandler.__init__(self) self.old_handler = old_handler self.Bind(wx.EVT_KEY_DOWN, self.OnKeyDown) self.Bind(wx.EVT_KEY_UP,...