Ram Watch - New List function implemented
This commit is contained in:
parent
3c019b9e96
commit
7f9c90958c
|
@ -49,6 +49,13 @@ namespace BizHawk.MultiClient
|
||||||
DisplayWatchList();
|
DisplayWatchList();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void NewWatchList()
|
||||||
|
{
|
||||||
|
//TODO: ask to save changes if necessary
|
||||||
|
watchList.Clear();
|
||||||
|
DisplayWatchList();
|
||||||
|
}
|
||||||
|
|
||||||
bool LoadWatchFile(string path)
|
bool LoadWatchFile(string path)
|
||||||
{
|
{
|
||||||
int y, z;
|
int y, z;
|
||||||
|
@ -145,7 +152,7 @@ namespace BizHawk.MultiClient
|
||||||
|
|
||||||
private void newListToolStripMenuItem_Click(object sender, EventArgs e)
|
private void newListToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
|
NewWatchList();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void openToolStripMenuItem_Click(object sender, EventArgs e)
|
private void openToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
|
|
Loading…
Reference in New Issue