f-spot r4138 - in trunk/extensions: . PicasaWebExport



Author: lmilesi
Date: Wed Jul  2 13:43:32 2008
New Revision: 4138
URL: http://svn.gnome.org/viewvc/f-spot?rev=4138&view=rev

Log:
2008-07-02  Lorenzo Milesi <maxxer yetopen it>

        * PicasaWeb/PicasaWebExport.addin.xml: bump version
        * PicasaWeb/PicasaWebExport.cs: check that there's at least one album
        on change. Fix bgo#541140.



Modified:
   trunk/extensions/ChangeLog
   trunk/extensions/PicasaWebExport/PicasaWebExport.addin.xml
   trunk/extensions/PicasaWebExport/PicasaWebExport.cs

Modified: trunk/extensions/PicasaWebExport/PicasaWebExport.addin.xml
==============================================================================
--- trunk/extensions/PicasaWebExport/PicasaWebExport.addin.xml	(original)
+++ trunk/extensions/PicasaWebExport/PicasaWebExport.addin.xml	Wed Jul  2 13:43:32 2008
@@ -1,5 +1,5 @@
 <Addin namespace="FSpot"
-	version="0.4.4.2"
+	version="0.4.4.3"
 	name="PicasaWeb Export"
 	description="This extension allows you to export your photos to PicasaWeb."
 	author="F-Spot team"

Modified: trunk/extensions/PicasaWebExport/PicasaWebExport.cs
==============================================================================
--- trunk/extensions/PicasaWebExport/PicasaWebExport.cs	(original)
+++ trunk/extensions/PicasaWebExport/PicasaWebExport.cs	Wed Jul  2 13:43:32 2008
@@ -884,7 +884,7 @@
 		
 		public void HandleAlbumOptionMenuChanged (object sender, System.EventArgs args)
 		{
-			if (albums == null)
+			if (albums == null || albums.Count == 0)
 				return;
 
 			PicasaAlbum a = albums [album_optionmenu.History];



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