[BUG] CodeLite crash while hovered text tooltip is active and focus lost

CodeLite installation/troubleshooting forum
kil'ka
CodeLite Curious
Posts: 6
Joined: Mon Dec 26, 2022 5:31 pm
Genuine User: Yes
IDE Question: C++
Contact:

[BUG] CodeLite crash while hovered text tooltip is active and focus lost

Post by kil'ka »

Version: CodeLite 16.7 and earlier installed via installer from site.
OS: Windows 10/11
Compiler: Msys2/Clang64

Steps to reproduce:
1) Create simple "hello world" console project or use existing
2) Click somewhere on editor
3) Press ctrl+s
4) Move mouse cursor to cout or << to activate hovered text tooltip
5) Press "windows" button on keyboard while cursor hover text and tooltip is active
-> CodeLite hangs about 2 seconds and close

OR

1) Create simple "hello world" console project or use existing
2) Click somewhere on editor
3) Press ctrl+s
4) Press button shortcut for Run, Check field don't ask me again and press Build and Execute
5) Move mouse cursor to cout or << to activate hovered text tooltip
6) Press button shortcut for Run (this time there will be no message) while cursor hover text and tooltip is active
-> CodeLite hangs about 2 seconds and close

User avatar
eranif
CodeLite Plugin
Posts: 6367
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: [BUG] CodeLite crash while hovered text tooltip is active and focus lost

Post by eranif »

I am unable to reproduce it locally.

Can you run CodeLite under lldb?

  • First, you will need to build CodeLite in debug mode
  • after running mingw32-make install CodeLite is installed into the install/ folder so type:

Code: Select all

cd install/
# use /tmp/cache for local caching folder, this work as a new installation of CodeLite
lldb ./codelite
(lldb)r -d /tmp/cache
Make sure you have read the HOW TO POST thread
Post Reply