Make uninstall fully silent

This commit is contained in:
JHubi1 2025-03-14 20:18:04 +01:00 committed by GitHub
parent 7d1d749977
commit c681b2f6d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ procedure CurUninstallStepChanged (CurUninstallStep: TUninstallStep);
case CurUninstallStep of
usPostUninstall:
begin
mres := MsgBox('Do you want to Remove settings?', mbConfirmation, MB_YESNO or MB_DEFBUTTON2)
mres := SuppressibleMsgBox('Do you want to Remove settings?', mbConfirmation, MB_YESNO or MB_DEFBUTTON2)
if mres = IDYES then
DelTree(ExpandConstant('{userappdata}\JHubi1\Ollama App'), True, True, True);
end;