From 16a9141cef48628d548bb88c47f6df194f1e3205 Mon Sep 17 00:00:00 2001 From: martin Date: Tue, 18 Aug 2009 23:28:31 +0000 Subject: [PATCH] EditorOptions: Removed Gutter-Hints => not implemented git-svn-id: trunk@21300 - --- ide/frames/editor_general_misc_options.pas | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ide/frames/editor_general_misc_options.pas b/ide/frames/editor_general_misc_options.pas index 455afd6a48..7b2d5cb1e5 100644 --- a/ide/frames/editor_general_misc_options.pas +++ b/ide/frames/editor_general_misc_options.pas @@ -65,7 +65,7 @@ begin with EditorOptionsGroupBox do begin // visual effects - Items.Add(dlgShowGutterHints); + //Items.Add(dlgShowGutterHints); // unimplemented Items.Add(lisShowSpecialCharacters); // spaces Items.Add(dlgTrimTrailingSpaces); @@ -92,7 +92,7 @@ begin Checked[Items.IndexOf(lisShowSpecialCharacters)] := eoShowSpecialChars in SynEditOptions; Checked[Items.IndexOf(dlgTrimTrailingSpaces)] := eoTrimTrailingSpaces in SynEditOptions; Checked[Items.IndexOf(dlgCloseButtonsNotebook)] := ShowTabCloseButtons; - Checked[Items.IndexOf(dlgShowGutterHints)] := ShowGutterHints; + //Checked[Items.IndexOf(dlgShowGutterHints)] := ShowGutterHints; Checked[Items.IndexOf(dlgFindTextatCursor)] := FindTextAtCursor; Checked[Items.IndexOf(dlgCopyWordAtCursorOnCopyNone)] := CopyWordAtCursorOnCopyNone; Checked[Items.IndexOf(dlgCopyPasteKeepFolds)] := eoFoldedCopyPaste in SynEditOptions2; @@ -126,7 +126,7 @@ begin UpdateOption(dlgTrimTrailingSpaces, eoTrimTrailingSpaces); ShowTabCloseButtons := CheckGroupItemChecked(EditorOptionsGroupBox, dlgCloseButtonsNotebook); CopyWordAtCursorOnCopyNone := CheckGroupItemChecked(EditorOptionsGroupBox, dlgCopyWordAtCursorOnCopyNone); - ShowGutterHints := CheckGroupItemChecked(EditorOptionsGroupBox, dlgShowGutterHints); + //ShowGutterHints := CheckGroupItemChecked(EditorOptionsGroupBox, dlgShowGutterHints); FindTextAtCursor := CheckGroupItemChecked(EditorOptionsGroupBox, dlgFindTextatCursor); TrimSpaceType := TSynEditStringTrimmingType(EditorTrimSpaceTypeCheckBox.ItemIndex); if EditorOptionsGroupBox.Checked[EditorOptionsGroupBox.Items.IndexOf