ShouldSkipPage is called twice per page
问题 I've noticed, that ShouldSkipPage is called twice per each page - before page is actually shown, and after. You can easily check this, by simply adding Log to function: function ShouldSkipPage(PageID: Integer): Boolean; begin if PageID = wpSelectDir then Log('ShouldSkipPage for SelectDir was called'); Result := false; end; You will see logged message twice (and by executing script in compiler, you can see, that second call occurs after page was shown). So, can someone explain, why it is