diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs index 3d1ee02238..0c5d6d1bb4 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs @@ -19,9 +19,9 @@ namespace BizHawk.Client.EmuHawk //SetStyle(ControlStyles.OptimizedDoubleBuffer, true); SetStyle(ControlStyles.AllPaintingInWmPaint, true); SetStyle(ControlStyles.SupportsTransparentBackColor, true); - //SetStyle(ControlStyles.Opaque, true); + SetStyle(ControlStyles.Opaque, true); this.Font = new Font("Courier New", 8); - BackColor = Color.Transparent; + //BackColor = Color.Transparent; } #region Properties @@ -171,20 +171,7 @@ namespace BizHawk.Client.EmuHawk protected override void OnPaintBackground(PaintEventArgs pevent) { - using (var ntr = new GDIRenderer(this)) - { - if (NeedToUpdateColumn() && Columns.Any()) - { - DrawColumnBg(ntr, pevent); - } - if (NeedToUpdateBg()) - { - DrawBg(ntr, pevent); - } - } - - //base.OnPaintBackground(pevent); } private void DrawColumnText(GDIRenderer ntr, PaintEventArgs e) @@ -213,10 +200,17 @@ namespace BizHawk.Client.EmuHawk { using (var ntr = new GDIRenderer(this)) { - if (NeedToUpdateColumn() && Columns.Any()) + // Header + if (Columns.Any()) { + DrawColumnBg(ntr, e); DrawColumnText(ntr, e); } + + // Background + DrawBg(ntr, e); + + // ForeGround } //base.OnPaint(e); @@ -240,21 +234,6 @@ namespace BizHawk.Client.EmuHawk #region Helpers - private bool NeedToUpdateColumn() - { - return true; // TODO - } - - private bool NeedToUpdateText() - { - return true; - } - - private bool NeedToUpdateBg() - { - return true; - } - private bool NeedToUpdateScrollbar() { return true; @@ -338,8 +317,6 @@ namespace BizHawk.Client.EmuHawk } } - - public class RollColumn { public enum InputType { Boolean, Float, Text }