Daniel Collins
Daniel Collins
No, but I can probably throw a test case together later today.
Also I've put this in my code as a workaround, for anyone else who runs into this problem: ```cpp wxDEFINE_EVENT(REHex::EVENT_RECURSION_FIXUP, wxCommandEvent); bool REHex::Document::ProcessEvent(wxEvent &event) { /* When a handler is...
Here's a sample, it turns out that the event handler function must *also* call wxEvent::Skip() to continue propagation otherwise `wxEvtHandler::SearchDynamicEventTable()` skips the pruning. ```cpp #include wxDEFINE_EVENT(EVENT_1, wxCommandEvent); wxDEFINE_EVENT(EVENT_2, wxCommandEvent); wxDEFINE_EVENT(EVENT_3,...
It turns out the aforementioned test failure isn't specific to the clang-cl build - it happens with MSVC too, I think its failing because my Windows VM doesn't have the...
@reneme I rebased onto master and the tests still failed... they do pass if I import the "D-TRUST Root Class 3 CA 2 EV 2009" certificate into the trust store...
@randombit @reneme Are either of you anticipating me making any changes on this PR? The remaining points seem to be a bit "maybe do something".
@randombit I've merged the changes from master with mercifully few conflicts and made a couple of further changes: - Updated `src/build-data/cc/clangcl.txt` per https://github.com/randombit/botan/pull/4255#discussion_r1860111585 and https://github.com/randombit/botan/pull/4255#discussion_r1740640307 - Removed `BOTAN_PUBLIC_API` from `Botan::IPAddressBlocks::Version`...
@randombit updated
Would it be possible to make use of the xdg-toplevel-drag API before GTK supports it (i.e. is there a way wxWidgets can bypass GTK and talk to the Wayland display...
I'm thinking about working on `wxAuiNotebook` dragging under Wayland and wanted to check what changes would/wouldn't be accepted into wxWidgets as a patch. My application subclasses `wxAuiNotebook` and does an...