Eran Ifrah

Results 192 comments of Eran Ifrah

I can't make it happen with the dialogs sample. I do see that not all tooltips are behaving the same, not sure why. For example, for the text control, the...

It looks to me as if the "blue" title from the "light" tooltip was kept when rendering the dark tooltip (in my initial issue report)

This is the `Show` code: ```c++ void NewLLMEndpointWizard::ShowTipFor(const wxString& message, wxWindow* control) { m_tooltip = std::make_unique(_("Failed Validation"), message); m_tooltip->SetTimeout(3000); m_tooltip->SetIcon(wxICON_WARNING); m_tooltip->ShowFor(control); } ``` It is being called from the `OnPageChanging`...

I just tested this with CodeLite master, and it is working as expected (Ubuntu 22.04 / macOS Sonoma / Windows 10)

Reverting is not going to happen. If you have a specific issue - please open an issue. Note that if a "jump to definition" is missing, this is an indication...

This looks like the root cause: ``` could not open configuration file: C:/msys64/home/esdev/root/lib/clang_x64_dll/mswu/build.cfg ``` Did you build wxWidgets as described here: https://docs.codelite.org/build/build_wx_widgets/#windows ?

Also, when in doubt, consult with the MSYS2 workflow (thanks to @Jarod42 who added this 👍🏽 ) https://github.com/eranif/codelite/blob/master/.github/workflows/msys2.yml

`wxWidgets_USE_FILE ` is empty because `wx-config` failed This whole error boils down to wxWidgets not build properly. Could you share how did you build wxWidgets? (I am mainly interested with...

I have updated the docs & deployed them to the website: https://docs.codelite.org/build/build_wx_widgets/#windows (You might need to refresh the page cache)

Maybe we should add an option to disable ctagsd and skip this ...