CA-153339: Add CoreOS icon to the OS icons

This commit is contained in:
Mihaela Stoica 2014-12-05 10:07:28 +00:00
parent afbbf25325
commit 963f54862a
3 changed files with 4 additions and 0 deletions

View File

@ -132,6 +132,7 @@ namespace XenAdmin
ImageList16.Images.Add("redhat_16x.png", Properties.Resources.redhat_16x);
ImageList16.Images.Add("suse_16x.png", Properties.Resources.suse_16x);
ImageList16.Images.Add("windows_h32bit_16.png", Properties.Resources.windows_h32bit_16);
ImageList16.Images.Add("coreos-globe-icon.png", Properties.Resources.coreos_globe_icon);
ImageList16.Images.Add("tools_uptodate_16x.png", Properties.Resources.tools_uptodate_16x);
ImageList16.Images.Add("tools_notinstalled_16x.png", Properties.Resources.tools_notinstalled_16x);

View File

@ -107,6 +107,7 @@ namespace XenAdmin
RHEL,
SUSE,
Windows,
CoreOS,
#endregion

View File

@ -1312,6 +1312,8 @@ namespace XenAdmin.XenSearch
return Icons.SUSE;
else if (os.Contains("windows"))
return Icons.Windows;
else if (os.Contains("coreos"))
return Icons.CoreOS;
return Icons.XenCenter;
};