package: stalonetray

Dear Maintainers, 

sometimes new created trayicons by applications are randomly bigger
than the others in stalonetray. When I exit and restart this application
it has the normal sized icon than in most cases, so the bug is not
surely reproducable all times.

However, to ease the reproducion of the bug I attached an simple
c-application which does nothing but creating a couple trayicons using
gtk. You have to compile it against gtk:

> gcc $(pkg-config --cflags --libs gtk+-2.0) tray.c

after invoking this, i see the most icons normal-sized in stalone-tray
but some double sized.

I am using stalonetray 0.8.1-1 within fvwm 2.5.30-ds1.1 both in debian
testing.

Kind regards,
Michael
#include <gtk/gtk.h>

int main(int argc, char **argv) {
        gtk_init(&argc, &argv);
        GtkStatusIcon *tray_icon;
        int i, j;

	for(i=0; i<50; i++) {
	        tray_icon = gtk_status_icon_new();
        	gtk_status_icon_set_from_icon_name(tray_icon, "up");
	        gtk_status_icon_set_visible(tray_icon, TRUE);
        }

        gtk_main();
        return 0;
}

Reply via email to