From 930b0b8198c20bf6c716754bc1d8da23e0507269 Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 11 Aug 2014 00:24:38 +0000 Subject: [PATCH] Input Roll - implement the UseCustomBackGround property and add some designer ignore attributes --- BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs index 1e3cb96497..259b4e2b39 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/InputRoll.cs @@ -128,11 +128,16 @@ namespace BizHawk.Client.EmuHawk #endregion - #region Public Methods + #region Api - // TODO: designer ignore + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)] public Cell CurrentCell { get; set; } + [Browsable(false)] + [DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)] + public bool UseCustomBackground { get; set; } + public string UserSettingsSerialized() { return string.Empty; // TODO @@ -320,7 +325,7 @@ namespace BizHawk.Client.EmuHawk } // Do background callback - if (QueryItemBkColor != null) + if (QueryItemBkColor != null && UseCustomBackground) { if (HorizontalOrientation) {