mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-18 12:49:42 +02:00
Opkman: Set default value for "Show regular icon for newly added packages" to true.
git-svn-id: trunk@54502 -
This commit is contained in:
parent
a0229aaa08
commit
9313b3afee
@ -177,7 +177,7 @@ begin
|
||||
FCheckForUpdates := FXML.GetValue('General/CheckForUpdates/Value', 0);
|
||||
FLastUpdate := FXML.GetExtendedValue('General/LastUpdate/Value', 0.0);
|
||||
FDaysToShowNewPackages := FXML.GetValue('General/DaysToShowNewPackages/Value', 31);
|
||||
FShowRegularIcons := FXML.GetValue('General/ShowRegularIcons/Value', False);
|
||||
FShowRegularIcons := FXML.GetValue('General/ShowRegularIcons/Value', True);
|
||||
|
||||
FProxySettings.FEnabled := FXML.GetValue('Proxy/Enabled/Value', False);
|
||||
FProxySettings.FServer := FXML.GetValue('Proxy/Server/Value', '');
|
||||
@ -207,7 +207,7 @@ begin
|
||||
FXML.SetDeleteValue('General/CheckForUpdates/Value', FCheckForUpdates, 0);
|
||||
FXML.SetDeleteExtendedValue('General/LastUpdate/Value', FLastUpdate, 0.0);
|
||||
FXML.SetDeleteValue('General/DaysToShowNewPackages/Value', FDaysToShowNewPackages, 31);
|
||||
FXML.SetDeleteValue('General/ShowRegularIcons/Value', FShowRegularIcons, False);
|
||||
FXML.SetDeleteValue('General/ShowRegularIcons/Value', FShowRegularIcons, True);
|
||||
|
||||
FXML.SetDeleteValue('Proxy/Enabled/Value', FProxySettings.FEnabled, false);
|
||||
FXML.SetDeleteValue('Proxy/Server/Value', FProxySettings.FServer, '');
|
||||
@ -238,7 +238,7 @@ begin
|
||||
FCheckForUpdates := 0;
|
||||
FLastUpdate := 0.0;
|
||||
FDaysToShowNewPackages := 31;
|
||||
FShowRegularIcons := False;
|
||||
FShowRegularIcons := True;
|
||||
|
||||
FProxySettings.FEnabled := False;
|
||||
FProxySettings.FServer := '';
|
||||
|
Loading…
Reference in New Issue
Block a user