51
Development / Re: wxSmith use bad constructor for wxStaticBoxSizer
« Last post by Miguel Gimenez on January 12, 2026, 03:59:40 pm »Fixed in r13767.
The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .
#ifdef __WXMAC__
// on macOS only set focus if we really lost it, to avoid native select all,
// or it will reset the text selection
if (!m_pTextCtrl->HasFocus())
m_pTextCtrl->SetFocus();
#else
m_pTextCtrl->SetFocus();
#endif
// only set focus if we really lost it, to avoid native select all
// or it will reset the text selection
if (!m_pTextCtrl->HasFocus())
m_pTextCtrl->SetFocus();

Not the debug tip window, sometimes, the code completion tip(from the clangd_client plugin) window becomes extremely large, see the blow two screen shot, the tip window cover the whole C::B window, also the tip window extended to another screen.""
In settings>editor>CodeCompletion what have you got set for "Maximum allowed code completion matches" ?
Hi, sorry for the late reply.
I just looked at my settings, and I see the value is 1000. Is that too big?
Not the debug tip window, sometimes, the code completion tip(from the clangd_client plugin) window becomes extremely large, see the blow two screen shot, the tip window cover the whole C::B window, also the tip window extended to another screen.""
In settings>editor>CodeCompletion what have you got set for "Maximum allowed code completion matches" ?
I can reproduce the error with wx 3.3.2 on Linux.
The analysers scan-build or cppcheck show several issues with Clangd_client.