Skip to content

Commit

Permalink
Merge pull request #122 from dennis/fix-open-data-directory
Browse files Browse the repository at this point in the history
Fix "Open data Directory" menu item
  • Loading branch information
dennis committed Aug 13, 2021
2 parents c96e820 + f0aebab commit ce5b868
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Components/WinFormUI/Forms/MainWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Threading;
using System.Windows.Forms;

Expand Down Expand Up @@ -208,7 +209,7 @@ private void LoadEventsToolStripMenuItem_Click(object sender, EventArgs e)

private void OpenDataDirectoryToolStripMenuItem_Click(object sender, EventArgs e)
{
Process.Start(".");
Process.Start("explorer.exe", Directory.GetCurrentDirectory());
}

private void TestEventsMenuItem_Click(object sender, EventArgs e)
Expand Down

0 comments on commit ce5b868

Please sign in to comment.