Evas font-engine: Fallback to script_fi if we didn't find another one.

SVN revision: 59803
This commit is contained in:
Tom Hacohen 2011-05-30 08:31:29 +00:00
parent 7e01aebd17
commit 0b72b9fcf5
1 changed files with 4 additions and 1 deletions

View File

@ -137,7 +137,10 @@ evas_common_font_query_run_font_end_get(RGBA_Font *fn, RGBA_Font_Int **script_fi
}
}
*cur_fi = fi;
if (fi)
*cur_fi = fi;
else
*cur_fi = *script_fi;
return itr - text;
}