Created attachment 5730 patch to fix the problem Currently the default tooltip is broken. In main.c:226, it says acToolTips = g_strdup_printf (acToolTips, "%s\n" "----------------\n" "%s\n" "Period (s): %d", poConf->acTitle, poConf->acCmd, poConf->iPeriod_ms / 1000); But it should be acToolTips = g_strdup_printf ("%s\n" "----------------\n" "%s\n" "Period (s): %d", poConf->acTitle, poConf->acCmd, poConf->iPeriod_ms / 1000); The first argument of g_strdup_printf is 'format', so the current call is incorrect. Patch attached.
Mass-reassign all bugs from florian@ to goodies-dev@, thanks for the maintenance work! (and sorry for the bugmail spam..)
Thanks for the patch. Fixed in commit http://git.xfce.org/panel-plugins/xfce4-genmon-plugin/commit/?id=71816b4cedf1fc0964d835fd651d0f86d96ea29b]71816b4cedf1fc0964d835fd651d0f86d96ea29b
Sorry, this commit: http://git.xfce.org/panel-plugins/xfce4-genmon-plugin/commit/?id=71816b4cedf1fc0964d835fd651d0f86d96ea29b
Marking bug report as resolved.