Provide a source when sending signals.

SVN revision: 28356
This commit is contained in:
Christopher Michael 2007-02-14 08:26:14 +00:00
parent 735d25b743
commit 9c4d51e53a
2 changed files with 4 additions and 4 deletions

View File

@ -240,7 +240,7 @@ collections
{
name: "text_hide";
signal: "e,state,text,hide";
source: "";
source: "e";
action: STATE_SET "hidden" 0.0;
target: "e.text.recv";
target: "e.text.send";
@ -249,7 +249,7 @@ collections
{
name: "text_show";
signal: "e,state,text,show";
source: "";
source: "e";
action: STATE_SET "default" 0.0;
target: "e.text.recv";
target: "e.text.send";

View File

@ -77,9 +77,9 @@ _config_updated(const char *id)
if (!inst->timer)
inst->timer = ecore_timer_add(0.5, _cb_poll, inst);
if (!ci->show_text)
edje_object_signal_emit(inst->o_net, "e,state,text,hide", "");
edje_object_signal_emit(inst->o_net, "e,state,text,hide", "e");
else
edje_object_signal_emit(inst->o_net, "e,state,text,show", "");
edje_object_signal_emit(inst->o_net, "e,state,text,show", "e");
break;
}