diff --git a/SpriteLibrary/SpriteEntryForm.cs b/SpriteLibrary/SpriteEntryForm.cs index c4f78f6..ae78e3a 100644 --- a/SpriteLibrary/SpriteEntryForm.cs +++ b/SpriteLibrary/SpriteEntryForm.cs @@ -166,6 +166,18 @@ namespace SpriteLibrary if (!TCTabPages.TabPages.Contains(tpMirrorRotate)) TCTabPages.TabPages.Add(tpMirrorRotate); } + if(rbMirror.Checked) + { + cbMirrorH.Visible = true; + cbMirrorV.Visible = true; + tbRotation.Visible = false; + } + if (rbRotation.Checked) + { + cbMirrorH.Visible = false; + cbMirrorV.Visible = false; + tbRotation.Visible = true; + } UpdateChosenAreaLabel(); ResumeLayout(); }