Skip to content

Commit

Permalink
Click version/battleversion -> dropdown combobox
Browse files Browse the repository at this point in the history
User error help
  • Loading branch information
kwsch committed Jul 25, 2020
1 parent 6bb2612 commit a221a27
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 82 deletions.
166 changes: 84 additions & 82 deletions PKHeX.WinForms/Controls/PKM Editor/PKMEditor.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions PKHeX.WinForms/Controls/PKM Editor/PKMEditor.cs
Expand Up @@ -1882,6 +1882,15 @@ private static Image GetMarkSprite(PictureBox p, bool opaque, double trans = 0.1
return opaque ? sprite : ImageUtil.ChangeOpacity(sprite, trans);
}

private void ClickVersionMarking(object sender, EventArgs e)
{
tabMain.SelectedTab = Tab_Met;
if (sender == PB_BattleVersion)
CB_BattleVersion.DroppedDown = true;
else
CB_GameOrigin.DroppedDown = true;
}

public void ChangeLanguage(ITrainerInfo sav, PKM pk)
{
// Force an update to the met locations
Expand Down

0 comments on commit a221a27

Please sign in to comment.