From 5e68e70ba693dc68c5c214ecb676750a6371e695 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Wed, 7 Jan 2015 00:42:02 +0100 Subject: [PATCH] identified couple of bug --- src/ce_editor.pas | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ce_editor.pas b/src/ce_editor.pas index 7d9fc83a..22ae3e09 100644 --- a/src/ce_editor.pas +++ b/src/ce_editor.pas @@ -30,6 +30,9 @@ type fKeyChanged: boolean; fDoc: TCESynMemo; // 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; tokLst: TLexTokenList; errLst: TLexErrorList; @@ -82,6 +85,7 @@ begin // completion.OnPaintItem := @completionItemPaint; fSyncEdit := TSynPluginSyncroEdit.Create(self); + //fSyncEdit.CaseSensitive:=true; bmp := TBitmap.Create; try imgList.GetBitmap(0, bmp);