Skip to content

Commit

Permalink
Merge pull request #551 from nshcr/patch-1
Browse files Browse the repository at this point in the history
installer: delete context menu entries created for library folder on uninstall
  • Loading branch information
dscho authored Apr 1, 2024
2 parents 09f2870 + 9fd5eed commit 7aa0637
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion installer/install.iss
Original file line number Diff line number Diff line change
Expand Up @@ -566,11 +566,13 @@ begin
RootKey:=HKEY_CURRENT_USER;
end;
SetArrayLength(Keys,4);
SetArrayLength(Keys,6);
Keys[0]:='SOFTWARE\Classes\Directory\shell\git_shell';
Keys[1]:='SOFTWARE\Classes\Directory\Background\shell\git_shell';
Keys[2]:='SOFTWARE\Classes\Directory\shell\git_gui';
Keys[3]:='SOFTWARE\Classes\Directory\Background\shell\git_gui';
Keys[4]:='SOFTWARE\Classes\LibraryFolder\background\shell\git_shell';
Keys[5]:='SOFTWARE\Classes\LibraryFolder\background\shell\git_gui';
for i:=0 to Length(Keys)-1 do begin
Command:='';
Expand Down

0 comments on commit 7aa0637

Please sign in to comment.