diff --git a/data/resources/StringResources.de.resources b/data/resources/StringResources.de.resources index 80a014e1fb..81950a1294 100644 Binary files a/data/resources/StringResources.de.resources and b/data/resources/StringResources.de.resources differ diff --git a/data/resources/StringResources.es-mx.resources b/data/resources/StringResources.es-mx.resources index 370bda7ef7..a2ee097dfe 100644 Binary files a/data/resources/StringResources.es-mx.resources and b/data/resources/StringResources.es-mx.resources differ diff --git a/data/resources/StringResources.es.resources b/data/resources/StringResources.es.resources index 9b3542cbbd..9f3b97e63b 100644 Binary files a/data/resources/StringResources.es.resources and b/data/resources/StringResources.es.resources differ diff --git a/data/resources/StringResources.nl.resources b/data/resources/StringResources.nl.resources index ad0bc2cc8f..553124c833 100644 Binary files a/data/resources/StringResources.nl.resources and b/data/resources/StringResources.nl.resources differ diff --git a/src/Main/Base/Project/Resources/MarkersTextEditorPanel.xfrm b/src/Main/Base/Project/Resources/MarkersTextEditorPanel.xfrm index a7824aabcb..0f121b4f28 100644 --- a/src/Main/Base/Project/Resources/MarkersTextEditorPanel.xfrm +++ b/src/Main/Base/Project/Resources/MarkersTextEditorPanel.xfrm @@ -1,128 +1,133 @@ - - - - - + + + + + + + + + + + - - - + + + - - - - + + + + - - + - + + - - + - + + - - + - + + - - + - + + - - + + - - + - + + - - + + - - + - + + - - + - + + + + - - - - - - + + + + + - - diff --git a/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/MarkersTextEditorPanel.cs b/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/MarkersTextEditorPanel.cs index 51dfd198ce..dac00be5e3 100644 --- a/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/MarkersTextEditorPanel.cs +++ b/src/Main/Base/Project/Src/TextEditor/Gui/OptionPanels/MarkersTextEditorPanel.cs @@ -34,6 +34,7 @@ namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.OptionPanels ((CheckBox)ControlDictionary["showVRulerCheckBox"]).Checked = properties.ShowVerticalRuler; ((CheckBox)ControlDictionary["showTabCharsCheckBox"]).Checked = properties.ShowTabs; ((CheckBox)ControlDictionary["showSpaceCharsCheckBox"]).Checked = properties.ShowSpaces; + ((CheckBox)ControlDictionary["showCaretLineCheckBox"]).Checked = properties.CaretLine; ControlDictionary["vRulerRowTextBox"].Text = properties.VerticalRulerRow.ToString(); @@ -61,6 +62,7 @@ namespace ICSharpCode.SharpDevelop.DefaultEditor.Gui.OptionPanels properties.ShowVerticalRuler = ((CheckBox)ControlDictionary["showVRulerCheckBox"]).Checked; properties.ShowTabs = ((CheckBox)ControlDictionary["showTabCharsCheckBox"]).Checked; properties.ShowSpaces = ((CheckBox)ControlDictionary["showSpaceCharsCheckBox"]).Checked; + properties.CaretLine = ((CheckBox)ControlDictionary["showCaretLineCheckBox"]).Checked; try { properties.VerticalRulerRow = Int32.Parse(ControlDictionary["vRulerRowTextBox"].Text); diff --git a/src/Main/StartUp/Project/Resources/StringResources.resources b/src/Main/StartUp/Project/Resources/StringResources.resources index 0a4c608560..948adf71eb 100644 Binary files a/src/Main/StartUp/Project/Resources/StringResources.resources and b/src/Main/StartUp/Project/Resources/StringResources.resources differ