#115, version 0.11.1.12

[Feature] Show icon in taskbar when application is running #115
This commit is contained in:
Markus Hofknecht 2020-06-28 15:35:04 +02:00
parent 1052dbb01c
commit aa1918ce02
2 changed files with 7 additions and 3 deletions

View file

@ -580,7 +580,11 @@ namespace SystemTrayMenu.Business
{
RowData rowData = (RowData)row.Cells[2].Value;
if (!menus[0].IsUsable)
if (rowData == null)
{
//Case when filtering a previous menu
}
else if (!menus[0].IsUsable)
{
row.DefaultCellStyle.SelectionBackColor = Color.White;
row.Selected = false;

View file

@ -35,5 +35,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.11.1.11")]
[assembly: AssemblyFileVersion("0.11.1.11")]
[assembly: AssemblyVersion("0.11.1.12")]
[assembly: AssemblyFileVersion("0.11.1.12")]