[Goodies-commits] r7584 - in xfce4-weather-plugin/trunk: . panel-plugin

Colin Leroy colin at xfce.org
Tue Jun 16 08:35:39 CEST 2009


Author: colin
Date: 2009-06-16 06:35:39 +0000 (Tue, 16 Jun 2009)
New Revision: 7584

Modified:
   xfce4-weather-plugin/trunk/ChangeLog
   xfce4-weather-plugin/trunk/panel-plugin/weather-summary.c
Log:
2009-06-16	Colin Leroy <colin at colino.net>

	* panel-plugin/weather-summary.c: Fix bug #5471, "Destroying summary 
	window opens up help window". Thanks to Erik Xian.



Modified: xfce4-weather-plugin/trunk/ChangeLog
===================================================================
--- xfce4-weather-plugin/trunk/ChangeLog	2009-06-16 05:44:16 UTC (rev 7583)
+++ xfce4-weather-plugin/trunk/ChangeLog	2009-06-16 06:35:39 UTC (rev 7584)
@@ -1,3 +1,8 @@
+2009-06-16	Colin Leroy <colin at colino.net>
+
+	* panel-plugin/weather-summary.c: Fix bug #5471, "Destroying summary 
+	window opens up help window". Thanks to Erik Xian.
+
 2009-06-15	Colin Leroy <colin at colino.net>
 
 	* panel-plugin/weather.c: Use g_timeout_add_seconds when possible.

Modified: xfce4-weather-plugin/trunk/panel-plugin/weather-summary.c
===================================================================
--- xfce4-weather-plugin/trunk/panel-plugin/weather-summary.c	2009-06-16 05:44:16 UTC (rev 7583)
+++ xfce4-weather-plugin/trunk/panel-plugin/weather-summary.c	2009-06-16 06:35:39 UTC (rev 7584)
@@ -541,7 +541,7 @@
 {
 	if (response == GTK_RESPONSE_ACCEPT)
 		gtk_widget_destroy(window);
-	else
+	else if (response == GTK_RESPONSE_HELP)
 		g_spawn_command_line_async ("exo-open --launch WebBrowser " PLUGIN_WEBSITE, NULL);
 }
 




More information about the Goodies-commits mailing list