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:
authorMarius Ungureanu <therzok@gmail.com>2017-05-19 19:35:00 +0300
committerMarius Ungureanu <therzok@gmail.com>2017-05-19 19:35:00 +0300
commitd042d856b54fd9572d447adf63852d968cd05fcb (patch)
tree2eb91980e0d9717c594736b65509f02e51cf9f11 /main/src/addins/VersionControl
parentec8fa7c4e849cf6b72e7bb387b33c45734cb118c (diff)
[VCS] Change arrow character so windows renders it properly
Bug 56438 - VCS: Weird widget
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);