Would you be able to run git bisect to find out when did this break exactly by chance? I don't remember any changes to this since 3.1.4 (a lot of things changed before it, but I can't find anything since then).
—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications on the go with GitHub Mobile for iOS or Android.
You are receiving this because you are subscribed to this thread.![]()
Would you be able to run
git bisectto find out when did this break exactly by chance? I don't remember any changes to this since 3.1.4 (a lot of things changed before it, but I can't find anything since then).
I believe that the reason this one - 63b1f17
it move focus from combobox to wxPopupTransientWindow
and there is also extra setting of focus to wxPopupTransientWindow
here - aa42d9c#diff-e8a80d7204c632b735827e9b86c0d7b3f15860ebf279b246facf134217a4d65fR2224
—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications on the go with GitHub Mobile for iOS or Android.
You are receiving this because you are subscribed to this thread.![]()
—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications, keep track of coding agent tasks and review pull requests on the go with GitHub Mobile for iOS and Android. Download it today!
You are receiving this because you are subscribed to this thread.![]()
I can't reproduce this with the following diff
diff --git a/samples/combo/combo.cpp b/samples/combo/combo.cpp index 0cb7d518d2..7653a93cb2 100644 --- a/samples/combo/combo.cpp +++ b/samples/combo/combo.cpp @@ -670,6 +670,7 @@ MyFrame::MyFrame(const wxString& title) ); + for(int i = 0; i < 50; i++) m_arrItems.Add("Extra"); odc->SetSelection(0); rowSizer->Add( odc, wxSizerFlags(1).CenterVertical().Border() );
with current master (pre-3.3.4), so it looks like this was fixed. Please reopen if it still doesn't work for you.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications, keep track of coding agent tasks and review pull requests on the go with GitHub Mobile for iOS and Android. Download it today!
You are receiving this because you are subscribed to this thread.![]()