mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-09-12 08:25:14 -05:00
Allow alt-click preview to import showdown
Alt-Click species may not always be visible, simple enough
This commit is contained in:
@@ -959,7 +959,12 @@ private static void InitializeStrings()
|
||||
private void ClickQR(object sender, EventArgs e)
|
||||
{
|
||||
if (ModifierKeys == Keys.Alt)
|
||||
ImportQRToTabs();
|
||||
{
|
||||
if (Clipboard.ContainsText())
|
||||
ClickShowdownImportPKM(sender, e);
|
||||
else
|
||||
ImportQRToTabs();
|
||||
}
|
||||
else
|
||||
ExportQRFromTabs();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user