Installer: Reuse any previously set custom Plink path on update installs

Signed-off-by: Sebastian Schuberth <sschuberth@gmail.com>
This commit is contained in:
Sebastian Schuberth 2013-03-15 09:57:04 +01:00
Родитель 6fc120f103
Коммит 2cb89d3e7a
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -552,7 +552,10 @@ begin
EdtPlink:=TEdit.Create(PuTTYPage);
with EdtPlink do begin
Parent:=PuTTYPage.Surface;
Text:=GetPuTTYLocation;
Text:=GetPreviousData('Plink Path','');
if not FileExists(Text) then begin
Text:=GetPuTTYLocation;
end;
if not FileExists(Text) then begin
Text:='';
end;
@ -1227,6 +1230,7 @@ begin
Data:='OpenSSH';
end else if RdbSSH[GS_Plink].Checked then begin
Data:='Plink';
SetPreviousData(PreviousDataKey,'Plink Path',EdtPlink.Text);
end;
SetPreviousData(PreviousDataKey,'SSH Option',Data);