mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-11 15:07:11 +00:00
Hover species combobox -> show species ID
This commit is contained in:
parent
a3421a881d
commit
9304101141
1 changed files with 2 additions and 1 deletions
|
@ -93,7 +93,7 @@ namespace PKHeX.WinForms.Controls
|
|||
public delegate SaveFile ReturnSAVEventHandler(object sender, EventArgs e);
|
||||
|
||||
private readonly PictureBox[] movePB, relearnPB;
|
||||
private readonly ToolTip Tip3 = new ToolTip(), NatureTip = new ToolTip();
|
||||
private readonly ToolTip Tip3 = new ToolTip(), NatureTip = new ToolTip(), SpeciesIDTip = new ToolTip();
|
||||
public SaveFile RequestSaveFile => SaveFileRequested?.Invoke(this, EventArgs.Empty);
|
||||
public bool PKMIsUnsaved => FieldsInitialized && FieldsLoaded && LastData?.Any(b => b != 0) == true && !LastData.SequenceEqual(CurrentPKM.Data);
|
||||
public bool IsEmptyOrEgg => CHK_IsEgg.Checked || CB_Species.SelectedIndex == 0;
|
||||
|
@ -1081,6 +1081,7 @@ namespace PKHeX.WinForms.Controls
|
|||
// Get Species dependent information
|
||||
if (FieldsLoaded)
|
||||
pkm.Species = WinFormsUtil.GetIndex(CB_Species);
|
||||
SpeciesIDTip.SetToolTip(CB_Species, pkm.Species.ToString("000"));
|
||||
SetAbilityList();
|
||||
SetForms();
|
||||
UpdateForm(null, null);
|
||||
|
|
Loading…
Reference in a new issue