mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-05-21 20:21:11 -05:00
Some fixes
This commit is contained in:
parent
d70c336e34
commit
146fb95f3d
4
DS_Map/Main Window.Designer.cs
generated
4
DS_Map/Main Window.Designer.cs
generated
|
|
@ -728,7 +728,7 @@
|
|||
this.label43 = new System.Windows.Forms.Label();
|
||||
this.trainerClassListBox = new System.Windows.Forms.ListBox();
|
||||
this.label42 = new System.Windows.Forms.Label();
|
||||
this.trainerComboBox = new System.Windows.Forms.ComboBox();
|
||||
this.trainerComboBox = new DSPRE.InputComboBox();
|
||||
this.trainerSaveCurrentButton = new System.Windows.Forms.Button();
|
||||
this.tableEditorTabPage = new System.Windows.Forms.TabPage();
|
||||
this.label73 = new System.Windows.Forms.Label();
|
||||
|
|
@ -11823,7 +11823,7 @@
|
|||
private System.Windows.Forms.Label label43;
|
||||
private System.Windows.Forms.ListBox trainerClassListBox;
|
||||
private System.Windows.Forms.Label label42;
|
||||
private System.Windows.Forms.ComboBox trainerComboBox;
|
||||
private DSPRE.InputComboBox trainerComboBox;
|
||||
private System.Windows.Forms.ComboBox followModeComboBox;
|
||||
private System.Windows.Forms.RadioButton johtoRadioButton;
|
||||
private System.Windows.Forms.RadioButton kantoRadioButton;
|
||||
|
|
|
|||
|
|
@ -105,7 +105,7 @@ namespace DSPRE {
|
|||
currentTrainerName = TrainerFile.NAME_NOT_FOUND;
|
||||
}
|
||||
|
||||
trainerList.Add("[" + i.ToString("D2") + "] " + trainerClasses.messages[classMessageID] + " " + currentTrainerName);
|
||||
trainerList.Add(currentTrainerName + " - " + trainerClasses.messages[classMessageID] + " [" + i.ToString("D2") + "] ");
|
||||
|
||||
}
|
||||
return trainerList.ToArray();
|
||||
|
|
@ -692,6 +692,10 @@ namespace DSPRE {
|
|||
monEditorToolStripMenuItem.Enabled = true;
|
||||
|
||||
scriptCommandsButton.Enabled = true;
|
||||
if(RomInfo.gameFamily == RomInfo.GameFamilies.Plat || RomInfo.gameFamily == RomInfo.GameFamilies.DP)
|
||||
{
|
||||
EditorPanels.tabPageEncountersEditor.Hide();
|
||||
}
|
||||
Helpers.statusLabelMessage();
|
||||
this.Text += " - " + RomInfo.fileName;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user