mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-10 22:05:06 +00:00
templates: Don't hide path selection on first 'Static' install
Fixes #669
This commit is contained in:
parent
1cb84fa6b5
commit
f0c878aa3e
1 changed files with 8 additions and 3 deletions
|
@ -334,9 +334,14 @@ end;
|
|||
function ShouldSkipPage(PageID: Integer): Boolean;
|
||||
begin
|
||||
Result := False;
|
||||
if ((not IsPortablePagePortableChoiceChecked()) and (PageID = wpSelectDir)) then begin
|
||||
Result := True;
|
||||
end
|
||||
if (PageID = wpSelectDir) then begin
|
||||
if (not IsPortablePagePortableChoiceChecked()) then begin
|
||||
if (IsUpgrade()) then begin
|
||||
Result := True;
|
||||
Exit;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
|
||||
// ------------------------------------------------------------------------------------------------------------------ //
|
||||
|
|
Loading…
Reference in a new issue