mirror of https://gitlab.com/basile.b/dexed.git
identified couple of bug
This commit is contained in:
parent
49cc7c0828
commit
5e68e70ba6
|
@ -30,6 +30,9 @@ type
|
||||||
fKeyChanged: boolean;
|
fKeyChanged: boolean;
|
||||||
fDoc: TCESynMemo;
|
fDoc: TCESynMemo;
|
||||||
// http://bugs.freepascal.org/view.php?id=26329
|
// http://bugs.freepascal.org/view.php?id=26329
|
||||||
|
// TODO-cbugfix: syncro-edit partially broken, undetermined condition
|
||||||
|
// TODO-cbugfix: syncro-edit should not be case-sensitive
|
||||||
|
// TODO-cbugfix: syncro-edit icon hidden after deletion, if doc is saved (as temp file, by the static explorer)
|
||||||
fSyncEdit: TSynPluginSyncroEdit;
|
fSyncEdit: TSynPluginSyncroEdit;
|
||||||
tokLst: TLexTokenList;
|
tokLst: TLexTokenList;
|
||||||
errLst: TLexErrorList;
|
errLst: TLexErrorList;
|
||||||
|
@ -82,6 +85,7 @@ begin
|
||||||
//
|
//
|
||||||
completion.OnPaintItem := @completionItemPaint;
|
completion.OnPaintItem := @completionItemPaint;
|
||||||
fSyncEdit := TSynPluginSyncroEdit.Create(self);
|
fSyncEdit := TSynPluginSyncroEdit.Create(self);
|
||||||
|
//fSyncEdit.CaseSensitive:=true;
|
||||||
bmp := TBitmap.Create;
|
bmp := TBitmap.Create;
|
||||||
try
|
try
|
||||||
imgList.GetBitmap(0, bmp);
|
imgList.GetBitmap(0, bmp);
|
||||||
|
|
Loading…
Reference in New Issue