deskbar-applet r1984 - in trunk: . data/art deskbar/handlers



Author: sebp
Date: Mon Mar  3 11:09:20 2008
New Revision: 1984
URL: http://svn.gnome.org/viewvc/deskbar-applet?rev=1984&view=rev

Log:
Copied icons from tomboy, because tomboy moved their icons.

Added:
   trunk/data/art/note-new.png   (contents, props changed)
   trunk/data/art/note.png   (contents, props changed)
Modified:
   trunk/ChangeLog
   trunk/data/art/Makefile.am
   trunk/deskbar/handlers/tomboy.py

Modified: trunk/data/art/Makefile.am
==============================================================================
--- trunk/data/art/Makefile.am	(original)
+++ trunk/data/art/Makefile.am	Mon Mar  3 11:09:20 2008
@@ -13,7 +13,9 @@
 	epiphany-history.png \
 	gpm-suspend-to-disk.png \
 	gpm-suspend-to-ram.png \
-	web-search.png
+	web-search.png \
+	note-new.png \
+	note.png
 
 16icondir = $(datadir)/icons/hicolor/16x16/apps
 16icon_DATA = 16x16/deskbar-applet.png

Added: trunk/data/art/note-new.png
==============================================================================
Binary file. No diff available.

Added: trunk/data/art/note.png
==============================================================================
Binary file. No diff available.

Modified: trunk/deskbar/handlers/tomboy.py
==============================================================================
--- trunk/deskbar/handlers/tomboy.py	(original)
+++ trunk/deskbar/handlers/tomboy.py	Mon Mar  3 11:09:20 2008
@@ -28,7 +28,7 @@
 		tomboy().DisplayNote(self._note)
 
 	def get_icon(self):
-		return "tomboy-note"
+		return "note.png"
 		
 	def get_hash(self):
 		return "DESKBAROPEN: %s" % self._title
@@ -82,7 +82,7 @@
 		tomboy().DisplayNote(self._note)
 		
 	def get_icon(self):
-		return "tomboy"
+		return "note-new.png"
 		
 	def get_verb(self):
 		return _("Create note <b>%(name)s</b>")
@@ -103,7 +103,7 @@
 		self.title = tomboy().GetNoteTitle(note)
 		deskbar.interfaces.Match.__init__(self,
 			name= self.title,
-			icon="tomboy-note", category="notes", **kwargs)
+			icon="note.png", category="notes", **kwargs)
 		self.note = note
 		self.add_action( TomboyOpenNoteAction(self.note, self.title) )
 		self.add_action( TomboyDeleteNoteAction(self.note, self.title) )
@@ -120,7 +120,7 @@
 		self.title = title
 		deskbar.interfaces.Match.__init__(self,
 			name= self.title,
-			icon="tomboy", category="actions", **kwargs)
+			icon="note-new.png", category="actions", **kwargs)
 		self.add_action( TomboyCreateNoteAction(self.title) )
 
 # Overall module



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]