Package: directoryassistant / 2.0-1.1

01-images.dpatch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
From: Unknown
Subject: Fix the images location on 'directoryassistant' script.

---
 directoryassistant |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--- a/directoryassistant
+++ b/directoryassistant
@@ -455,7 +455,7 @@
 		self.window.set_title("Directory Assistant "+VERSIONSTRING)
 		self.window.set_border_width(10)
 		try:
-			pixbuf = gtk.gdk.pixbuf_new_from_file('/usr/local/share/directoryassistant/directoryassistant.png')
+			pixbuf = gtk.gdk.pixbuf_new_from_file('/usr/share/directoryassistant/directoryassistant.png')
 			self.window.set_icon(pixbuf)
 		except:
 			pass
@@ -469,7 +469,7 @@
 		vbox.pack_start(hbox, False, True)
 		try:
 			image = gtk.Image()
-			image.set_from_file('/usr/local/share/directoryassistant/decoration.png')
+			image.set_from_file('/usr/share/directoryassistant/decoration.png')
 			hbox.pack_start(image)
 		except:
 			pass