Hex Editor - fix text search in the find box
This commit is contained in:
parent
9fef38dfd6
commit
c01bd0d5ef
|
@ -75,6 +75,9 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
Controls.Remove(FindBox);
|
Controls.Remove(FindBox);
|
||||||
|
|
||||||
|
if (HexRadio.Checked)
|
||||||
|
{
|
||||||
|
|
||||||
FindBox = new HexTextBox
|
FindBox = new HexTextBox
|
||||||
{
|
{
|
||||||
CharacterCasing = CharacterCasing.Upper,
|
CharacterCasing = CharacterCasing.Upper,
|
||||||
|
@ -83,6 +86,16 @@ namespace BizHawk.Client.EmuHawk
|
||||||
Size = size,
|
Size = size,
|
||||||
Location = location
|
Location = location
|
||||||
};
|
};
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
FindBox = new TextBox
|
||||||
|
{
|
||||||
|
Text = text,
|
||||||
|
Size = size,
|
||||||
|
Location = location
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
Controls.Add(FindBox);
|
Controls.Add(FindBox);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue