Hi All, This is my first code contribution to this project. Earlier I had done some translation in Punjabi and added a few bugs for F-Spot. Now I am trying to fix one of the bugs I added myself, namely, 650304. It relates to thumbnails not being rendered when a image is rotated while it is being edited.
If possible, please spare some time to review it. Here goes the patch: Signed-off-by: [email protected] Filmstrip.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/src/Clients/MainApp/FSpot.Widgets/Filmstrip.cs +++ b/src/Clients/MainApp/FSpot.Widgets/Filmstrip.cs @@ -545,7 +545,7 @@ namespace FSpot.Widgets } if (current == null) { - var pixbuf = XdgThumbnailSpec.LoadThumbnail (uri, ThumbnailSize.Large, null); + var pixbuf = XdgThumbnailSpec.LoadThumbnail (uri, ThumbnailSize.Large); if (pixbuf == null) { ThumbnailLoader.Default.Request (uri, ThumbnailSize.Large, 0); current = FSpot.Core.Global.IconTheme.LoadIcon ("gtk-missing-image", ThumbSize, (Gtk.IconLookupFlags)0); Thanks, Ramneek
_______________________________________________ f-spot-list mailing list [email protected] http://mail.gnome.org/mailman/listinfo/f-spot-list
