Ram Search - search list - Ctrl + A hotkey for selecting all values
This commit is contained in:
parent
7cfdad7bd0
commit
665c9c5fbd
|
@ -14,10 +14,8 @@ namespace BizHawk.MultiClient
|
||||||
//TODO:
|
//TODO:
|
||||||
//Sorting by Prev only does "Since prev frame", find a way to integrate the various prev options
|
//Sorting by Prev only does "Since prev frame", find a way to integrate the various prev options
|
||||||
//In DoUndo, prevList is set to searchList, instead how about a UndoPrev, so that undo restores both the current and previous values
|
//In DoUndo, prevList is set to searchList, instead how about a UndoPrev, so that undo restores both the current and previous values
|
||||||
//Redo button
|
|
||||||
//Go To Address (Ctrl+G) feature
|
//Go To Address (Ctrl+G) feature
|
||||||
//Ctrl+A = highlight all visible addresses
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A winform designed to search through ram values
|
/// A winform designed to search through ram values
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -2128,6 +2126,13 @@ namespace BizHawk.MultiClient
|
||||||
{
|
{
|
||||||
RemoveAddresses();
|
RemoveAddresses();
|
||||||
}
|
}
|
||||||
|
else if (e.KeyCode == Keys.A && e.Control && !e.Alt && !e.Shift) //Select All
|
||||||
|
{
|
||||||
|
for (int x = 0; x < searchList.Count; x++)
|
||||||
|
{
|
||||||
|
SearchListView.SelectItem(x, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void RedotoolStripButton2_Click(object sender, EventArgs e)
|
private void RedotoolStripButton2_Click(object sender, EventArgs e)
|
||||||
|
|
Loading…
Reference in New Issue