mirror of https://gitlab.com/basile.b/dexed.git
Merge branch 'a11_2_a12'
This commit is contained in:
commit
70a4fe5327
|
@ -225,8 +225,8 @@ type
|
||||||
property Sources: TStringList read fExtraSrcs write setSrcs stored false; deprecated;
|
property Sources: TStringList read fExtraSrcs write setSrcs stored false; deprecated;
|
||||||
property exclusions: TStringList read fExcl write setExcl;
|
property exclusions: TStringList read fExcl write setExcl;
|
||||||
property extraSources: TStringList read fExtraSrcs write setSrcs;
|
property extraSources: TStringList read fExtraSrcs write setSrcs;
|
||||||
property includes: TStringList read fIncl write setIncl; deprecated;
|
property includes: TStringList read fIncl write setIncl stored false; deprecated;
|
||||||
property imports: TStringList read fImpt write setImpt; deprecated;
|
property imports: TStringList read fImpt write setImpt stored false; deprecated;
|
||||||
property importModulePaths: TStringList read fIncl write setIncl;
|
property importModulePaths: TStringList read fIncl write setIncl;
|
||||||
property importStringPaths: TStringList read fImpt write setImpt;
|
property importStringPaths: TStringList read fImpt write setImpt;
|
||||||
public
|
public
|
||||||
|
|
|
@ -234,6 +234,7 @@ begin
|
||||||
macRecorder.Editor := fDoc;
|
macRecorder.Editor := fDoc;
|
||||||
fSyncEdit.Editor := fDoc;
|
fSyncEdit.Editor := fDoc;
|
||||||
completion.Editor := fDoc;
|
completion.Editor := fDoc;
|
||||||
|
//TODO-cbugfix: prevent completion to steal the focus, this trigs too much updates after Ctrl+Space
|
||||||
if (pageControl.ActivePage.Caption = '') then
|
if (pageControl.ActivePage.Caption = '') then
|
||||||
begin
|
begin
|
||||||
fKeyChanged := true;
|
fKeyChanged := true;
|
||||||
|
@ -249,6 +250,7 @@ end;
|
||||||
procedure TCEEditorWidget.completionExecute(Sender: TObject);
|
procedure TCEEditorWidget.completionExecute(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
getCompletionList;
|
getCompletionList;
|
||||||
|
completion.TheForm.Font.Size := fDoc.Font.Size;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TCEEditorWidget.completionCodeCompletion(var Value: string;
|
procedure TCEEditorWidget.completionCodeCompletion(var Value: string;
|
||||||
|
|
|
@ -110,7 +110,7 @@ end;
|
||||||
procedure TCELibManEditorWidget.btnRemLibClick(Sender: TObject);
|
procedure TCELibManEditorWidget.btnRemLibClick(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
if List.Selected = nil then exit;
|
if List.Selected = nil then exit;
|
||||||
List.Items.Delete( List.Selected.Index );
|
List.Items.Delete(List.Selected.Index);
|
||||||
gridToData;
|
gridToData;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue