Reputation: 5015
Could any one help me to remove the "Nullsoft" label in NSIS installer? Please refer the image below.
Upvotes: 8
Views: 2563
Reputation: 1
This should help to remove the line from the bottom:
GetDlgItem $R0 $HWNDPARENT 1045
ShowWindow $R0 ${SW_HIDE}
Upvotes: 0
Reputation: 131
to remove line from the bottom :
!insertmacro DestroyWindow $HWNDPARENT 1045 # dimm remove line from bottom
Upvotes: 0