diff --git a/EliteBGS/MainWindow.xaml b/EliteBGS/MainWindow.xaml
index a3116ed..b4b9086 100644
--- a/EliteBGS/MainWindow.xaml
+++ b/EliteBGS/MainWindow.xaml
@@ -182,10 +182,13 @@
+
+
+
diff --git a/EliteBGS/MainWindow.xaml.cs b/EliteBGS/MainWindow.xaml.cs
index 40c8e68..b93d741 100644
--- a/EliteBGS/MainWindow.xaml.cs
+++ b/EliteBGS/MainWindow.xaml.cs
@@ -542,4 +542,13 @@ public partial class MainWindow : MetroWindow {
private void NoFleetCarrier_Toggled(object sender, RoutedEventArgs e) {
Config.Global.IgnoreFleetCarrier = this.NoFleetCarrier.IsOn;
}
+
+ private void OpenInExplorer_Click(object sender, RoutedEventArgs e) {
+ try {
+ Process.Start(new ProcessStartInfo(Config.Global.JournalLocation) {
+ UseShellExecute = true,
+ });
+ } catch (Exception) {
+ }
+ }
}