mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
ide: Disableing Libclang YesNo dialog after the crash only if it is enabled
This commit is contained in:
parent
723c3e716a
commit
d88071d4d6
1 changed files with 2 additions and 1 deletions
|
|
@ -378,7 +378,8 @@ void AppMain___()
|
|||
}
|
||||
|
||||
if(FileExists(crash_file)) {
|
||||
if(PromptYesNo("TheIDE has crashed the last time it was run. As the possible "
|
||||
if(LibClangEnabled &&
|
||||
PromptYesNo("TheIDE has crashed the last time it was run. As the possible "
|
||||
"cause is libclang incompatibility, we are suggesting to disable Assist features for now."))
|
||||
LibClangEnabled = false;
|
||||
DeleteFile(crash_file);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue