From 199a35269a6e0e6886b06dd9cf9522fba060cf8d Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Tue, 7 Aug 2012 16:43:37 +0200 Subject: [PATCH] linux: Fix compile error --- SparkleShare/Linux/SparkleUIHelpers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SparkleShare/Linux/SparkleUIHelpers.cs b/SparkleShare/Linux/SparkleUIHelpers.cs index 04b84f36..94f0e908 100755 --- a/SparkleShare/Linux/SparkleUIHelpers.cs +++ b/SparkleShare/Linux/SparkleUIHelpers.cs @@ -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); }