mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-12-28 18:41:14 +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;
|
function ShouldSkipPage(PageID: Integer): Boolean;
|
||||||
begin
|
begin
|
||||||
Result := False;
|
Result := False;
|
||||||
if ((not IsPortablePagePortableChoiceChecked()) and (PageID = wpSelectDir)) then begin
|
if (PageID = wpSelectDir) then begin
|
||||||
Result := True;
|
if (not IsPortablePagePortableChoiceChecked()) then begin
|
||||||
end
|
if (IsUpgrade()) then begin
|
||||||
|
Result := True;
|
||||||
|
Exit;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------------------------ //
|
// ------------------------------------------------------------------------------------------------------------------ //
|
||||||
|
|
Loading…
Reference in a new issue