diff --git a/src/App.xaml.cs b/src/App.xaml.cs
index 0636a298..da11692a 100644
--- a/src/App.xaml.cs
+++ b/src/App.xaml.cs
@@ -33,8 +33,9 @@ namespace SourceGit {
///
///
public static void RaiseError(string msg) {
- var main = Current.MainWindow as UI.Launcher;
- main.Dispatcher.Invoke(() => main.Errors.Add(msg));
+ Current.Dispatcher.Invoke(() => {
+ (Current.MainWindow as UI.Launcher).Errors.Add(msg);
+ });
}
///
diff --git a/src/UI/Dashboard.xaml b/src/UI/Dashboard.xaml
index 0afc3c17..bbde65c4 100644
--- a/src/UI/Dashboard.xaml
+++ b/src/UI/Dashboard.xaml
@@ -32,7 +32,7 @@
-
+
@@ -210,6 +210,8 @@
Padding="0"
Background="{StaticResource Brush.BG3}"
FontFamily="Consolas"
+ ScrollViewer.HorizontalScrollBarVisibility="Disabled"
+ ScrollViewer.VerticalScrollBarVisibility="Auto"
LostFocus="TreeLostFocus"
SelectedItemChanged="LocalBranchSelected"
PreviewMouseWheel="TreeMouseWheel">
@@ -230,7 +232,7 @@
-
+
diff --git a/src/UI/Launcher.xaml b/src/UI/Launcher.xaml
index eb938c88..28011750 100644
--- a/src/UI/Launcher.xaml
+++ b/src/UI/Launcher.xaml
@@ -35,7 +35,7 @@
-
+
@@ -50,21 +50,18 @@
-
+