Import/export of shortcuts (trying another way)

This commit is contained in:
Nikolaj Olsson 2020-10-11 16:29:41 +02:00
parent 7bbf43144b
commit 9ff79c510a
2 changed files with 1806 additions and 1776 deletions

File diff suppressed because it is too large Load Diff

View File

@ -3436,7 +3436,9 @@ namespace Nikse.SubtitleEdit.Forms
}
catch (Exception exception)
{
MessageBox.Show("Shortcuts not imported!" + Environment.NewLine + Environment.NewLine + exception.Message);
MessageBox.Show("Shortcuts not imported!" + Environment.NewLine + Environment.NewLine +
exception.Message + Environment.NewLine +
exception.StackTrace);
SeLogger.Error(exception, "Failed to import shortcuts");
}
}
@ -3462,7 +3464,8 @@ namespace Nikse.SubtitleEdit.Forms
}
catch (Exception exception)
{
MessageBox.Show(exception.Message);
MessageBox.Show(exception.Message + Environment.NewLine +
exception.StackTrace);
SeLogger.Error(exception, "Failed to export shortcuts");
}
}