Added initial values to the HexEditor color globals (left this out in my last commit).
This commit is contained in:
parent
48e2f8c7dd
commit
16a24df692
|
@ -280,9 +280,9 @@ namespace BizHawk.MultiClient
|
|||
public bool HexEditorBigEndian = false;
|
||||
public int HexEditorDataSize = 1;
|
||||
//Hex Editor Colors
|
||||
public Color HexBackgrndColor;
|
||||
public Color HexForegrndColor;
|
||||
public Color HexMenubarColor;
|
||||
public Color HexBackgrndColor = Color.FromName("Control");
|
||||
public Color HexForegrndColor = Color.FromName("ControlText");
|
||||
public Color HexMenubarColor = Color.FromName("Control");
|
||||
public Color HexFreezeColor = Color.LightBlue;
|
||||
public Color HexHighlightColor = Color.Pink;
|
||||
public Color HexHighlightFreezeColor = Color.Violet;
|
||||
|
|
Loading…
Reference in New Issue