Fixed mistake

I fixed the mistake i made by deleting the 'Select All' option of
contextual menu.
This commit is contained in:
Darius Costolas 2016-06-13 23:20:40 +03:00
parent daac56a12c
commit f8908193a9
1 changed files with 4 additions and 0 deletions

View File

@ -847,6 +847,10 @@ private void showMessageboxToolStripMenuItem_Click(object sender, EventArgs e)
#endregion
private void selectAllToolStripMenuItem_Click(object sender, EventArgs e)
{
lstClients.SelectAllItems();
}
#endregion