mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-11 15:07:11 +00:00
Folder List enhancements
This commit is contained in:
parent
58f9e808d7
commit
c6c76c3983
2 changed files with 5 additions and 1 deletions
|
@ -8,7 +8,8 @@ CTRL-E: Export SAV
|
|||
CTRL-B: Export BAK
|
||||
CTRL-Q: Quit
|
||||
|
||||
CTRL-D: Open Database
|
||||
CTRL-D: Open PKM Database
|
||||
CTRL-F: Open Folder
|
||||
CTRL-G: Open Mystery Gift Database
|
||||
CTRL-R: Open Box Report
|
||||
CTRL-P: Open About PKHeX
|
||||
|
|
|
@ -41,7 +41,10 @@ namespace PKHeX.WinForms
|
|||
button.Click += (s, e) =>
|
||||
{
|
||||
if (Directory.Exists(path))
|
||||
{
|
||||
Process.Start("explorer.exe", path);
|
||||
Close();
|
||||
}
|
||||
else
|
||||
WinFormsUtil.Alert("Can't find folder:", path);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue