mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 13:17:18 +02:00
ide/codetools options: Make default of "Icons in code completion box" false.
git-svn-id: trunk@57333 -
This commit is contained in:
parent
c582885e5c
commit
e70e036998
@ -548,7 +548,7 @@ begin
|
|||||||
FIdentComplUseContainsFilter:=XMLConfig.GetValue(
|
FIdentComplUseContainsFilter:=XMLConfig.GetValue(
|
||||||
'CodeToolsOptions/IdentifierCompletion/UseContainsFilter',true);
|
'CodeToolsOptions/IdentifierCompletion/UseContainsFilter',true);
|
||||||
FIdentComplShowIcons:=XMLConfig.GetValue(
|
FIdentComplShowIcons:=XMLConfig.GetValue(
|
||||||
'CodeToolsOptions/IdentifierCompletion/ShowIcons',true);
|
'CodeToolsOptions/IdentifierCompletion/ShowIcons',false);
|
||||||
FIdentComplAddParameterBrackets:=XMLConfig.GetValue(
|
FIdentComplAddParameterBrackets:=XMLConfig.GetValue(
|
||||||
'CodeToolsOptions/IdentifierCompletion/AutoAddParameterBrackets',true);
|
'CodeToolsOptions/IdentifierCompletion/AutoAddParameterBrackets',true);
|
||||||
FIdentComplReplaceIdentifier:=XMLConfig.GetValue(
|
FIdentComplReplaceIdentifier:=XMLConfig.GetValue(
|
||||||
@ -720,7 +720,7 @@ begin
|
|||||||
XMLConfig.SetDeleteValue('CodeToolsOptions/IdentifierCompletion/UseContainsFilter',
|
XMLConfig.SetDeleteValue('CodeToolsOptions/IdentifierCompletion/UseContainsFilter',
|
||||||
FIdentComplUseContainsFilter,true);
|
FIdentComplUseContainsFilter,true);
|
||||||
XMLConfig.SetDeleteValue('CodeToolsOptions/IdentifierCompletion/ShowIcons',
|
XMLConfig.SetDeleteValue('CodeToolsOptions/IdentifierCompletion/ShowIcons',
|
||||||
FIdentComplShowIcons,true);
|
FIdentComplShowIcons,false);
|
||||||
XMLConfig.SetDeleteValue('CodeToolsOptions/IdentifierCompletion/AutoAddParameterBrackets',
|
XMLConfig.SetDeleteValue('CodeToolsOptions/IdentifierCompletion/AutoAddParameterBrackets',
|
||||||
FIdentComplAddParameterBrackets,true);
|
FIdentComplAddParameterBrackets,true);
|
||||||
XMLConfig.SetDeleteValue('CodeToolsOptions/IdentifierCompletion/ReplaceIdentifier',
|
XMLConfig.SetDeleteValue('CodeToolsOptions/IdentifierCompletion/ReplaceIdentifier',
|
||||||
@ -937,7 +937,7 @@ begin
|
|||||||
FIdentComplAutoStartAfterPoint:=true;
|
FIdentComplAutoStartAfterPoint:=true;
|
||||||
FIdentComplAutoUseSingleIdent:=true;
|
FIdentComplAutoUseSingleIdent:=true;
|
||||||
FIdentComplUseContainsFilter:=true;
|
FIdentComplUseContainsFilter:=true;
|
||||||
FIdentComplShowIcons:=true;
|
FIdentComplShowIcons:=false;
|
||||||
FIdentComplAddParameterBrackets:=true;
|
FIdentComplAddParameterBrackets:=true;
|
||||||
FIdentComplReplaceIdentifier:=true;
|
FIdentComplReplaceIdentifier:=true;
|
||||||
FIdentComplJumpToError:=true;
|
FIdentComplJumpToError:=true;
|
||||||
|
Loading…
Reference in New Issue
Block a user