diff --git a/src/UI/Manager.xaml b/src/UI/Manager.xaml
index 1cfbedda..8f462b22 100644
--- a/src/UI/Manager.xaml
+++ b/src/UI/Manager.xaml
@@ -150,8 +150,10 @@
-
-
+
+
+
+
@@ -167,7 +169,7 @@
-
+
diff --git a/src/UI/Manager.xaml.cs b/src/UI/Manager.xaml.cs
index a89c23a7..0071020c 100644
--- a/src/UI/Manager.xaml.cs
+++ b/src/UI/Manager.xaml.cs
@@ -357,8 +357,8 @@ namespace SourceGit.UI {
briefMask.Visibility = Visibility.Hidden;
- repoName.Content = repo.Name;
- repoPath.Content = repo.Path;
+ repoName.Text = repo.Name;
+ repoPath.Text = repo.Path;
Task.Run(() => {
var changes = repo.LocalChanges();
@@ -377,10 +377,10 @@ namespace SourceGit.UI {
if (commits.Count > 0) {
var c = commits[0];
lastCommitId.Content = c.ShortSHA;
- lastCommit.Content = c.Subject;
+ lastCommit.Text = c.Subject;
} else {
lastCommitId.Content = "---";
- lastCommit.Content = "";
+ lastCommit.Text = "";
}
});
});