Added Growl (Not yet visible on the GUI).

This commit is contained in:
Mark McDowall 2011-11-01 20:08:53 -07:00
commit 3fe1e80ccb
16 changed files with 327 additions and 2 deletions

View file

@ -37,7 +37,7 @@
public static System.Drawing.Bitmap GetIconAsImage(string Name)
{
System.IO.Stream stm = typeof(ResourceManager).Assembly.GetManifestResourceStream(string.Format("{0}.Icons.{1}.ico", typeof(ResourceManager).Namespace, Name));
System.IO.Stream stm = typeof(ResourceManager).Assembly.GetManifestResourceStream(string.Format("NzbDrone.Core.{0}.ico", Name));
if (stm == null) return null;
System.Drawing.Bitmap bmp;
using (System.Drawing.Icon ico = new System.Drawing.Icon(stm))