From 02224ae8b3c7fbac973abf3ee424737cc79f5d72 Mon Sep 17 00:00:00 2001 From: Stephen 'Okra' Houston Date: Thu, 5 Jan 2017 15:35:20 -0600 Subject: [PATCH] Luncher: Fix right click menu popup crash. --- src/modules/luncher/bar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/luncher/bar.c b/src/modules/luncher/bar.c index abc478e6b..be547cb37 100644 --- a/src/modules/luncher/bar.c +++ b/src/modules/luncher/bar.c @@ -925,7 +925,7 @@ _bar_icon_add(Instance *inst, Efreet_Desktop *desktop, E_Client *non_desktop_cli snprintf(ori, sizeof(ori), "e,state,off,%s", _bar_location_get(inst)); elm_layout_signal_emit(ic->o_layout, ori, "e"); - msg = alloca(sizeof(Edje_Message_Int_Set)); + msg = alloca(sizeof(Edje_Message_String)); if (inst->cfg->style) msg->str = strdup(inst->cfg->style); edje_object_message_send(elm_layout_edje_get(ic->o_layout), EDJE_MESSAGE_STRING, 1, msg);