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:
authorLluis Sanchez <llsan@microsoft.com>2017-05-23 10:46:13 +0300
committerGitHub <noreply@github.com>2017-05-23 10:46:13 +0300
commitc5794cd8ad7bc48e01e2d6e30bdb901ad47d6897 (patch)
tree8914730853978ec1cd173b38f4a8b83216155121 /main/src/addins/VersionControl
parenta27b6c517e303a2ed837473ea2944dbc0a6d6091 (diff)
parentd042d856b54fd9572d447adf63852d968cd05fcb (diff)
Merge pull request #2460 from mono/bug56438
[VCS] Change arrow character so windows renders it properly
Diffstat (limited to 'main/src/addins/VersionControl')
-rw-r--r--main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl.Views/CellRendererDiff.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl.Views/CellRendererDiff.cs b/main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl.Views/CellRendererDiff.cs
index 0b13aa9a05..ad5a18da85 100644
--- a/main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl.Views/CellRendererDiff.cs
+++ b/main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl.Views/CellRendererDiff.cs
@@ -362,7 +362,7 @@ namespace MonoDevelop.VersionControl.Views
ctx.Stroke ();
string text = lines[firstBlock.FirstLine].Replace ("@","").Replace ("-","");
- text = "<span size='x-small'>" + text.Replace ("+","</span><span size='small'>➜</span><span size='x-small'> ") + "</span>";
+ text = "<span size='x-small'>" + text.Replace ("+","</span><span size='small'>→</span><span size='x-small'> ") + "</span>";
layout.SetText ("");
layout.SetMarkup (text);