diff --git a/src/ce_optionseditor.lfm b/src/ce_optionseditor.lfm index a0599bb8..2ce029a3 100644 --- a/src/ce_optionseditor.lfm +++ b/src/ce_optionseditor.lfm @@ -62,6 +62,7 @@ inherited CEOptionEditorWidget: TCEOptionEditorWidget Top = 0 Width = 405 Align = alClient + CheckboxForBoolean = False DefaultValueFont.Color = clWindowText Filter = [tkInteger, tkChar, tkEnumeration, tkFloat, tkSet, tkMethod, tkSString, tkLString, tkAString, tkWString, tkVariant, tkArray, tkRecord, tkInterface, tkClass, tkObject, tkWChar, tkBool, tkInt64, tkQWord, tkDynArray, tkInterfaceRaw, tkProcVar, tkUString, tkUChar, tkHelper] Indent = 16 diff --git a/src/ce_optionseditor.pas b/src/ce_optionseditor.pas index b3959895..af65abb0 100644 --- a/src/ce_optionseditor.pas +++ b/src/ce_optionseditor.pas @@ -63,6 +63,7 @@ begin fDockable := false; fModal:= true; fEdOptsSubj := TCEEditableOptionsSubject.create; + inspector.CheckboxForBoolean := true; // png := TPortableNetworkGraphic.Create; try diff --git a/src/ce_projconf.lfm b/src/ce_projconf.lfm index cf3150bb..c74f60e7 100644 --- a/src/ce_projconf.lfm +++ b/src/ce_projconf.lfm @@ -143,13 +143,14 @@ inherited CEProjectConfigurationWidget: TCEProjectConfigurationWidget Top = 0 Width = 272 Align = alClient + CheckboxForBoolean = False DefaultValueFont.Color = clWindowText Filter = [tkInteger, tkChar, tkEnumeration, tkFloat, tkSet, tkMethod, tkSString, tkLString, tkAString, tkWString, tkVariant, tkArray, tkRecord, tkInterface, tkClass, tkWChar, tkBool, tkInt64, tkQWord, tkDynArray, tkInterfaceRaw, tkProcVar, tkUString, tkUChar, tkHelper] Indent = 16 NameFont.Color = clWindowText OnModified = inspectorModified - PreferredSplitterX = 145 - SplitterX = 145 + PreferredSplitterX = 150 + SplitterX = 150 ValueFont.Color = clGreen end end diff --git a/src/ce_projconf.pas b/src/ce_projconf.pas index 8430c49d..9d2b1065 100644 --- a/src/ce_projconf.pas +++ b/src/ce_projconf.pas @@ -78,6 +78,7 @@ begin end; Tree.Selected := Tree.Items.GetLastNode; inspector.OnEditorFilter := @GridFilter; + inspector.CheckboxForBoolean := true; // EntitiesConnector.addObserver(self); end; diff --git a/src/ce_toolseditor.lfm b/src/ce_toolseditor.lfm index 2d93b316..74abdaf4 100644 --- a/src/ce_toolseditor.lfm +++ b/src/ce_toolseditor.lfm @@ -121,11 +121,14 @@ inherited CEToolsEditorWidget: TCEToolsEditorWidget Top = 0 Width = 268 Align = alClient + CheckboxForBoolean = False DefaultValueFont.Color = clWindowText Filter = [tkInteger, tkChar, tkEnumeration, tkFloat, tkSet, tkMethod, tkSString, tkLString, tkAString, tkWString, tkVariant, tkArray, tkRecord, tkInterface, tkClass, tkObject, tkWChar, tkBool, tkInt64, tkQWord, tkDynArray, tkInterfaceRaw, tkProcVar, tkUString, tkUChar, tkHelper] Indent = 16 NameFont.Color = clWindowText OnModified = propsEdModified + PreferredSplitterX = 150 + SplitterX = 150 ValueFont.Color = clGreen end end diff --git a/src/ce_toolseditor.pas b/src/ce_toolseditor.pas index b7c7062c..d5e42efc 100644 --- a/src/ce_toolseditor.pas +++ b/src/ce_toolseditor.pas @@ -45,6 +45,7 @@ var png: TPortableNetworkGraphic; begin inherited; + propsEd.CheckboxForBoolean := true; png := TPortableNetworkGraphic.Create; try png.LoadFromLazarusResource('arrow_up');