Archive: NSIS Show Details Button appears when it shouldn't


NSIS Show Details Button appears when it shouldn't
Has anyone else noticed that in the more recent versions of NSIS (~1.60-1.62), the Show Details button that appears when NSIS finishes installing shows itself sometimes even when it's already showing the details of the install? It's been happening to me lately and it's really annoying. Is there a way to fix it or has the NSIS team been notified?


It happened to me once. I don't know how I fixed it, but try as I might now, I can't get it to happen again!


Does anybody know why it does that?


I don't, but I've written a script that does it, so it'll probably get fixed soon.

Caption 'List Root Folder'
OutFile 'List Root Folder.exe'
ShowInstDetails NeverShow
CompletedText 'List of All Files under Root Folder:'
Section

SetDetailsPrint TextOnly
DetailPrint 'Listing all files under root folder...'

Call ListFiles

SetDetailsPrint TextOnly
SetDetailsView Show

SectionEnd

Function ListFiles

SetDetailsPrint ListOnly
FindFirst $0 $1 \*.*

DoStuff:

DetailPrint $1
FindNext $0 $1
IfErrors 0 DoStuff

FunctionEnd