mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2025-01-20 07:19:18 +01:00
CA-153339: Add CoreOS icon to the OS icons
This commit is contained in:
parent
afbbf25325
commit
963f54862a
@ -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);
|
||||
|
@ -107,6 +107,7 @@ namespace XenAdmin
|
||||
RHEL,
|
||||
SUSE,
|
||||
Windows,
|
||||
CoreOS,
|
||||
|
||||
#endregion
|
||||
|
||||
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user