From a1c9482cb630029a2d7752b326c4eb54cedc923b Mon Sep 17 00:00:00 2001 From: Taehyub Kim Date: Wed, 8 Jun 2016 10:47:29 +0900 Subject: [PATCH] elm ctxpopup: fix auto_hide mode to work correctly @fix Change-Id: I3c1b9574138f336ff1c969599c6131ee190ed2fe --- src/lib/elc_ctxpopup.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/elc_ctxpopup.c b/src/lib/elc_ctxpopup.c index 50d4550..77295b5 100644 --- a/src/lib/elc_ctxpopup.c +++ b/src/lib/elc_ctxpopup.c @@ -989,7 +989,8 @@ _bg_clicked_cb(void *data, { ELM_CTXPOPUP_DATA_GET(data, sd); - _hide_signals_emit(data, sd->dir); + if (sd->auto_hide) + _hide_signals_emit(data, sd->dir); } static void -- 2.7.4