diff options
author | Christian Brabandt <cb@256bit.org> | 2022-03-11 15:24:11 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-03-11 15:24:11 +0000 |
commit | 176711f06966f6691a29c410e4693bf14e0f3d74 (patch) | |
tree | 938328444653a0ac69b42fb4af75e6636f01d77f /nsis/gvim.nsi | |
parent | dbf8094b17781ab1db191cf690e59c79f508a50f (diff) | |
download | vim-git-176711f06966f6691a29c410e4693bf14e0f3d74.tar.gz |
patch 8.2.4545: MS-Windows: the installed icon is low resolutionv8.2.4545
Problem: MS-Windows: the installed icon is low resolution.
Solution: Use a better icon. Install vim.ico. (Christian Brabandt,
closes #9931, closes #9930)
Diffstat (limited to 'nsis/gvim.nsi')
-rw-r--r-- | nsis/gvim.nsi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nsis/gvim.nsi b/nsis/gvim.nsi index c32a8868f..f9b1790b1 100644 --- a/nsis/gvim.nsi +++ b/nsis/gvim.nsi @@ -403,6 +403,9 @@ Section "$(str_section_exe)" id_section_exe SetOutPath $0\autoload\xml File ${VIMRT}\autoload\xml\*.* + SetOutPath $0\bitmaps + File ${VIMSRC}\vim.ico + SetOutPath $0\syntax File ${VIMRT}\syntax\*.* |