Show message box after generate thumbnails

This commit is contained in:
Jaex 2019-01-02 12:20:34 +03:00
parent 09cd2e62fd
commit b24fbf69b5

View file

@ -180,15 +180,16 @@ private void btnGenerate_Click(object sender, EventArgs e)
}
}
}
Cursor = Cursors.Default;
// TODO: Translate
MessageBox.Show("Thumbnails successfully generated.", Text, MessageBoxButtons.OK, MessageBoxIcon.Information);
}
catch (Exception ex)
{
DebugHelper.WriteException(ex);
ex.ShowError();
}
finally
{
Cursor = Cursors.Default;
ex.ShowError();
}
}
}