diff --git a/Docs/screenshot1.png b/Docs/screenshot1.png index 23e2d09..3534346 100644 Binary files a/Docs/screenshot1.png and b/Docs/screenshot1.png differ diff --git a/Src/App.xaml.cs b/Src/App.xaml.cs index e99111b..eabf585 100644 --- a/Src/App.xaml.cs +++ b/Src/App.xaml.cs @@ -1,17 +1,12 @@ -using System; -using System.Collections.Generic; -using System.Configuration; -using System.Data; -using System.Linq; -using System.Threading.Tasks; -using System.Windows; +using System.Windows; -namespace GitSimpleRewriteHistory +namespace GitSimpleRewriteHistory; + +public partial class App : Application { - /// - /// Interaction logic for App.xaml - /// - public partial class App : Application + protected override void OnStartup(StartupEventArgs e) { + base.OnStartup(e); + System.Windows.Forms.Application.EnableVisualStyles(); } }