in quit/lock view in the action plugin the actions were bound to the wrong image or the other way around :) Index: plugins/actions/actions.c =================================================================== --- plugins/actions/actions.c (revision 20306) +++ plugins/actions/actions.c (working copy) @@ -128,11 +128,11 @@ switch (action->type) { case ACTION_QUIT_LOCK: - pb = actions_load_icon (ACTION_QUIT, width); + pb = actions_load_icon (ACTION_LOCK, width); gtk_image_set_from_pixbuf (GTK_IMAGE (action->image1), pb); g_object_unref (pb); - pb = actions_load_icon (ACTION_LOCK, width); + pb = actions_load_icon (ACTION_QUIT, width); gtk_image_set_from_pixbuf (GTK_IMAGE (action->image2), pb); g_object_unref (pb); Reproducible: Always Steps to Reproduce: 1. 2. 3.
Hehe, oops. small mixup ;-) Thanks.