From 40f002fe971c6d4494891b3bce66f68e609ac582 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sun, 21 Nov 2010 17:33:15 +0000 Subject: [PATCH] [window] Fix wrong path to sidesplash image --- SparkleShare/SparkleWindow.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SparkleShare/SparkleWindow.cs b/SparkleShare/SparkleWindow.cs index f0b60242..4860f88a 100644 --- a/SparkleShare/SparkleWindow.cs +++ b/SparkleShare/SparkleWindow.cs @@ -48,7 +48,9 @@ namespace SparkleShare { HBox = new HBox (false, 6); - string image_path = SparkleHelpers.CombineMore (Defines.PREFIX, "share", "pixmaps", "side-splash.png"); + string image_path = SparkleHelpers.CombineMore (Defines.PREFIX, "share", "sparkleshare", + "pixmaps", "side-splash.png"); + Image side_splash = new Image (image_path); VBox = new VBox (false, 0);