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:
authorVsevolod Kukol <sevoku@microsoft.com>2017-06-09 12:54:49 +0300
committerVsevolod Kukol <sevoku@microsoft.com>2017-06-09 12:54:49 +0300
commitfad114e473370d1969b3b2e5817ba0ea33f30a4d (patch)
treead9140a79f0f8143cbbe682a5b5c08bbf49a5eb5 /main/src/core/Mono.TextEditor.Shared/Mono.TextEditor/TextEditorOptions.cs
parent34102387c7c2e2ab0a02bc8116413b50d9538252 (diff)
[TextEditor] Properly copy the TextEditorOptions color style
Diffstat (limited to 'main/src/core/Mono.TextEditor.Shared/Mono.TextEditor/TextEditorOptions.cs')
-rw-r--r--main/src/core/Mono.TextEditor.Shared/Mono.TextEditor/TextEditorOptions.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/core/Mono.TextEditor.Shared/Mono.TextEditor/TextEditorOptions.cs b/main/src/core/Mono.TextEditor.Shared/Mono.TextEditor/TextEditorOptions.cs
index ec3695dc38..7e9e50ae55 100644
--- a/main/src/core/Mono.TextEditor.Shared/Mono.TextEditor/TextEditorOptions.cs
+++ b/main/src/core/Mono.TextEditor.Shared/Mono.TextEditor/TextEditorOptions.cs
@@ -589,7 +589,7 @@ namespace Mono.TextEditor
indentStyle = other.IndentStyle;
fontName = other.FontName;
enableSyntaxHighlighting = other.EnableSyntaxHighlighting;
- colorStyle = other.colorStyle;
+ colorStyle = other.EditorThemeName;
overrideDocumentEolMarker = other.OverrideDocumentEolMarker;
defaultEolMarker = other.DefaultEolMarker;
enableAnimations = other.EnableAnimations;