Skip to content

Commit

Permalink
Merge pull request #7 from fairyman80/FixFileOpenCancelError
Browse files Browse the repository at this point in the history
Fixed: Click on Cancel button in Open File dialog should not show Mes…
  • Loading branch information
LGGGreg committed May 18, 2018
2 parents 24726c6 + 8ccca60 commit acf8e8c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion SkypeLogViewerLGG/MainWindowForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,9 @@ private void button1_Click(object sender, EventArgs e)
{
this.textBoxDataBasePath.Text = openFileDialog1.FileName;
Properties.Settings.Default.LastFolderPath = Path.GetDirectoryName(openFileDialog1.FileName);

tryLoad();
}
tryLoad();
}
private void loadMessagesFromIdentity(Conversation c)
{
Expand Down

0 comments on commit acf8e8c

Please sign in to comment.