Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Krüger <mkrueger@xamarin.com>2012-07-04 12:01:59 +0400
committerMike Krüger <mkrueger@xamarin.com>2012-07-04 12:03:07 +0400
commit0abc320570aafe87cbd10446240bf1ee73e7e9c6 (patch)
treefadae8261b891de3faebf8ea158d165a4cc550a7 /main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs
parent8f00559bc6b3082d65a9826f4cf616f926c90a6d (diff)
[SourceEditor] Removed unused text editor options.
Diffstat (limited to 'main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs')
-rw-r--r--main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs3
1 files changed, 0 insertions, 3 deletions
diff --git a/main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs b/main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs
index 8dfbb37d90..8528bfc210 100644
--- a/main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs
+++ b/main/src/addins/MonoDevelop.Gettext/MonoDevelop.Gettext.Editor/POEditorWidget.cs
@@ -241,8 +241,6 @@ namespace MonoDevelop.Gettext
options.ShowLineNumberMargin = false;
options.ShowFoldMargin = false;
options.ShowIconMargin = false;
- options.ShowInvalidLines = false;
- options.ShowSpaces = options.ShowTabs = options.ShowEolMarkers = false;
options.ColorScheme = PropertyService.Get ("ColorScheme", "Default");
options.FontName = PropertyService.Get<string> ("FontName");
@@ -300,7 +298,6 @@ namespace MonoDevelop.Gettext
void CheckbuttonWhiteSpacesToggled (object sender, EventArgs e)
{
- options.ShowSpaces = options.ShowTabs = checkbuttonWhiteSpaces.Active;
texteditorOriginal.QueueDraw ();
texteditorPlural.QueueDraw ();
for (int i = this.notebookTranslated.NPages - 1; i >= 0; i--) {