Hotkey Dialog - fix tab orders, Hotkey/Input config - change highlighted color to light blue instead of red as that is a more logical highlight color

This commit is contained in:
adelikat 2012-09-10 04:11:17 +00:00
parent 75a1cd9e4a
commit f7addb3419
2 changed files with 5 additions and 5 deletions

View File

@ -303,7 +303,7 @@
this.IDW_MAXTURBO.Location = new System.Drawing.Point(93, 106);
this.IDW_MAXTURBO.Name = "IDW_MAXTURBO";
this.IDW_MAXTURBO.Size = new System.Drawing.Size(100, 20);
this.IDW_MAXTURBO.TabIndex = 110;
this.IDW_MAXTURBO.TabIndex = 18;
//
// label80
//
@ -321,7 +321,7 @@
this.IDW_ToggleBGInput.Location = new System.Drawing.Point(292, 202);
this.IDW_ToggleBGInput.Name = "IDW_ToggleBGInput";
this.IDW_ToggleBGInput.Size = new System.Drawing.Size(100, 20);
this.IDW_ToggleBGInput.TabIndex = 108;
this.IDW_ToggleBGInput.TabIndex = 76;
//
// label79
//

View File

@ -18,7 +18,7 @@ namespace BizHawk.MultiClient
string wasPressed = "";
ToolTip tooltip1 = new ToolTip();
public string ButtonName;
Color HighlightedColor = Color.Pink;
Color HighlightedColor = Color.LightCyan;
Color RegularColor = SystemColors.Window;
[DllImport("user32")]
@ -44,7 +44,7 @@ namespace BizHawk.MultiClient
public void FlagDuplicate(string duplicateName)
{
RegularColor = Color.Cyan;
RegularColor = Color.LightCoral;
HighlightedColor = Color.Violet;
BackColor = RegularColor;
tooltip1.SetToolTip(this, "same mapping as " + duplicateName);
@ -52,7 +52,7 @@ namespace BizHawk.MultiClient
public void UnflagDuplicate()
{
HighlightedColor = Color.Pink;
HighlightedColor = Color.LightCyan;
RegularColor = SystemColors.Window;
tooltip1.SetToolTip(this, "");
}