mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-22 12:03:10 +00:00
Add setting to hide status condition view
Likely will be moved to the bottom right corner and shown with a language-less sprite. Feature preview on main :)
This commit is contained in:
parent
35bf97eaf1
commit
f630ad8271
2 changed files with 4 additions and 0 deletions
|
@ -1933,6 +1933,7 @@ public sealed partial class PKMEditor : UserControl, IMainEditor
|
|||
Contest.ToggleInterface(Entity, Entity.Context);
|
||||
if (t is not IFormArgument)
|
||||
L_FormArgument.Visible = false;
|
||||
StatusView.Visible = Main.Settings.EntityEditor.ShowStatusCondition;
|
||||
|
||||
ToggleInterface(Entity.Format);
|
||||
}
|
||||
|
|
|
@ -310,6 +310,9 @@ public sealed class EntityEditorSettings
|
|||
|
||||
[LocalizedDescription("When showing a Generation 1 format entity, show the gender it would have if transferred to other generations.")]
|
||||
public bool ShowGenderGen1 { get; set; }
|
||||
|
||||
[LocalizedDescription("When showing an entity, show any stored Status Condition (Sleep/Burn/etc) it may have.")]
|
||||
public bool ShowStatusCondition { get; set; } = true;
|
||||
}
|
||||
|
||||
public sealed class EncounterDatabaseSettings
|
||||
|
|
Loading…
Reference in a new issue