Untested fix for edje external elm_panes

It was elm_panes_horizontal_is, but grep shows no matches.
So I'm guessing horiztonal_get.
Seems was originally comited by watchwolf when the file was added.

SVN revision: 52287
This commit is contained in:
Brett Nash 2010-09-15 06:39:43 +00:00
parent c6684b49ec
commit 38997599c8
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ static Eina_Bool external_panes_param_get(void *data __UNUSED__,
else if (!strcmp(param->name, "horizontal")
&& param->type == EDJE_EXTERNAL_PARAM_TYPE_BOOL)
{
param->i = elm_panes_horizontal_is(obj);
param->i = elm_panes_horizontal_get(obj);
return EINA_TRUE;
}
else if (!strcmp(param->name, "left size")