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:
parent
75a1cd9e4a
commit
f7addb3419
|
@ -303,7 +303,7 @@
|
||||||
this.IDW_MAXTURBO.Location = new System.Drawing.Point(93, 106);
|
this.IDW_MAXTURBO.Location = new System.Drawing.Point(93, 106);
|
||||||
this.IDW_MAXTURBO.Name = "IDW_MAXTURBO";
|
this.IDW_MAXTURBO.Name = "IDW_MAXTURBO";
|
||||||
this.IDW_MAXTURBO.Size = new System.Drawing.Size(100, 20);
|
this.IDW_MAXTURBO.Size = new System.Drawing.Size(100, 20);
|
||||||
this.IDW_MAXTURBO.TabIndex = 110;
|
this.IDW_MAXTURBO.TabIndex = 18;
|
||||||
//
|
//
|
||||||
// label80
|
// label80
|
||||||
//
|
//
|
||||||
|
@ -321,7 +321,7 @@
|
||||||
this.IDW_ToggleBGInput.Location = new System.Drawing.Point(292, 202);
|
this.IDW_ToggleBGInput.Location = new System.Drawing.Point(292, 202);
|
||||||
this.IDW_ToggleBGInput.Name = "IDW_ToggleBGInput";
|
this.IDW_ToggleBGInput.Name = "IDW_ToggleBGInput";
|
||||||
this.IDW_ToggleBGInput.Size = new System.Drawing.Size(100, 20);
|
this.IDW_ToggleBGInput.Size = new System.Drawing.Size(100, 20);
|
||||||
this.IDW_ToggleBGInput.TabIndex = 108;
|
this.IDW_ToggleBGInput.TabIndex = 76;
|
||||||
//
|
//
|
||||||
// label79
|
// label79
|
||||||
//
|
//
|
||||||
|
|
|
@ -18,7 +18,7 @@ namespace BizHawk.MultiClient
|
||||||
string wasPressed = "";
|
string wasPressed = "";
|
||||||
ToolTip tooltip1 = new ToolTip();
|
ToolTip tooltip1 = new ToolTip();
|
||||||
public string ButtonName;
|
public string ButtonName;
|
||||||
Color HighlightedColor = Color.Pink;
|
Color HighlightedColor = Color.LightCyan;
|
||||||
Color RegularColor = SystemColors.Window;
|
Color RegularColor = SystemColors.Window;
|
||||||
|
|
||||||
[DllImport("user32")]
|
[DllImport("user32")]
|
||||||
|
@ -44,7 +44,7 @@ namespace BizHawk.MultiClient
|
||||||
|
|
||||||
public void FlagDuplicate(string duplicateName)
|
public void FlagDuplicate(string duplicateName)
|
||||||
{
|
{
|
||||||
RegularColor = Color.Cyan;
|
RegularColor = Color.LightCoral;
|
||||||
HighlightedColor = Color.Violet;
|
HighlightedColor = Color.Violet;
|
||||||
BackColor = RegularColor;
|
BackColor = RegularColor;
|
||||||
tooltip1.SetToolTip(this, "same mapping as " + duplicateName);
|
tooltip1.SetToolTip(this, "same mapping as " + duplicateName);
|
||||||
|
@ -52,7 +52,7 @@ namespace BizHawk.MultiClient
|
||||||
|
|
||||||
public void UnflagDuplicate()
|
public void UnflagDuplicate()
|
||||||
{
|
{
|
||||||
HighlightedColor = Color.Pink;
|
HighlightedColor = Color.LightCyan;
|
||||||
RegularColor = SystemColors.Window;
|
RegularColor = SystemColors.Window;
|
||||||
tooltip1.SetToolTip(this, "");
|
tooltip1.SetToolTip(this, "");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue