mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 04:36:31 +02:00
Opkman: do not try to download package list on IDE startup if update interval is set to 'never', patch from Balázs
git-svn-id: branches/fixes_2_0@59783 -
This commit is contained in:
parent
ca0776b930
commit
a3398d4910
@ -127,7 +127,7 @@ begin
|
||||
begin
|
||||
if (FPackageLinks.Count = 0) then
|
||||
begin
|
||||
if (not PackageDownloader.DownloadingJSON) and (not Application.Terminated) then
|
||||
if (not PackageDownloader.DownloadingJSON) and (not Application.Terminated) and (Options.CheckForUpdates <> 5) then
|
||||
PackageDownloader.DownloadJSON(Options.ConTimeOut*1000, True);
|
||||
Exit;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user