[f-spot] Use the gtk-new icon for import tags



commit 608e0625b3cd3f9e5188f446824e7a96d90138a0
Author: Jim Ramsay <i am jimramsay com>
Date:   Wed Jun 17 16:06:53 2009 -0400

    Use the gtk-new icon for import tags
    
    The old f-spot-imported-xmp-tags.png only came in one size, wasn't installed
    anyway, and looks a lot like gtk-new.  This will only be seen on a fresh
    database, as older databases will have gtk-missing-image cached for this tag.

 icons/f-spot-imported-xmp-tags.png |  Bin 692 -> 0 bytes
 src/ImportCommand.cs               |    2 +-
 src/XmpTagsImporter.cs             |    2 +-
 3 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/ImportCommand.cs b/src/ImportCommand.cs
index b3c64c6..2fe03ac 100644
--- a/src/ImportCommand.cs
+++ b/src/ImportCommand.cs
@@ -723,7 +723,7 @@ public class ImportCommand : GladeDialog
 				Category default_category = db.Tags.GetTagByName (Catalog.GetString ("Import Tags")) as Category;
 				if (default_category == null) {
 					default_category = db.Tags.CreateCategory (null, Catalog.GetString ("Import Tags"), false);
-					default_category.ThemeIconName = "f-spot-imported-xmp-tags.png"; 
+					default_category.ThemeIconName = "gtk-new"; 
 				}
 				t = db.Tags.CreateCategory (default_category, tagname, false) as Tag;
 				db.Tags.Commit (t);
diff --git a/src/XmpTagsImporter.cs b/src/XmpTagsImporter.cs
index 93b43cc..b3e227e 100644
--- a/src/XmpTagsImporter.cs
+++ b/src/XmpTagsImporter.cs
@@ -25,7 +25,7 @@ namespace FSpot.Xmp {
 		private TagStore tag_store;
 		private Stack<Tag> tags_created;
 
-		static private string LastImportIcon = "f-spot-imported-xmp-tags.png";
+		static private string LastImportIcon = "gtk-new";
 		static private string PlacesIcon = "emblem-places";
 
 	        const string UserComment = MetadataStore.ExifNS + "UserComment";



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