linux: Fix compile error

This commit is contained in:
Hylke Bons 2012-08-07 16:43:37 +02:00
parent 5ba0092947
commit 199a35269a

View file

@ -45,7 +45,7 @@ namespace SparkleShare {
public static Image GetImage (string name)
{
string image_path = new string [] { Defines.INSTALL_DIR, "pixmaps", name };
string image_path = new string [] { Program.UI.AssetsPath, "pixmaps", name }.Combine ();
return new Image (image_path);
}