Hi, a debian user reported that it might be difficult to access the right clic menu of weather plugin because no icon is displayed. More info if you need can be shown at http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=510215 Cheers,
Re-assigning to Colin Leroy who is the new maintainer of the plugin.
This should be fixed in SVN r7549.
Hmhm, I still get those messages: (xfce4-weather-plugin:31241): weather-WARNING **: Unable to open image: /usr/share/xfce4/weather/icons/liquid/-.png It seems that the fix is wrong. It only uses 99.png when there's no filename, but here the filename exists and is '-'. So I guess checking for that character should fix the problem in the end?
My patch didn't remove the warning on failure to get the asked-for icon. Instead, it loads 99.png after warning: image = gdk_pixbuf_new_from_file_at_scale (filename, size, size, TRUE, NULL); if (G_UNLIKELY (!image)) { g_warning ("Unable to open image: %s", filename); /* this is what you see */ /* this checks that we asked for another image than the default "99" if (number && strcmp(number, "99")) { g_free(filename); /* and in this case it returns it. */ return get_icon("99", size); } } In the end, even with the warning, the icon should be displayed.
Hmhmh, ok, correct. But then it floods .xsession-errors :)