Andrea Gavana
Andrea Gavana
I don't think `wx.FileConfig` makes any promise that it will create folders for you - so your first two points in the code may be invalid. I may be mistaken...
Possibly related: https://github.com/wxWidgets/Phoenix/issues/2522 https://gitlab.freedesktop.org/cairo/cairo/-/issues/824 https://gitlab.freedesktop.org/cairo/cairo/-/issues/824#note_2264420
@bpaczkowski : are you calling LogMessage from another thread? If you are, then don’t. Is this still relevant? I never had a problem with doing this.
@swt2c : my recollection of stuff is that things like wx.StaticText and wx.StaticBitmap are not “real” widgets on Linux (possibly Mac as well?) but they are drawn by the OS...
This may be a useless comment, but what happens if you Bind() the wx.EVT_RIGHT_UP (or _DOWN) to the CustomTreeCtrl? I am assuming you will get an event to your event...
I’m very happy to finally see some action! I’ve been using wxPython for years and I still do every day, we have very many applications depending on it and I...
The FlatMenu code creates the two menu items IDs in a sequence, one after the other: ```python MENU_DISABLE_MENU_ITEM = wx.NewIdRef() MENU_REMOVE_MENU = wx.NewIdRef() ``` My understanding is that `MENU_REMOVE_MENU` >...
@swt2c : I only have Windows, but from the comments above related to GStreamer I have the feeling that this is just an issue with missing/wrong libraries, so not really...
I’m not that much of a contributor anymore, but for what is worth I am with @DietmarSchwertberger here. I am not super familiar with either black or ruff, but I...
The quick and dirty workaround to this would be to catch and silence the AssertionError(s) and do nothing if they happen - I.e., no zoom in either direction. This is...