Minor tweek to edje viewer. Adds font path for local directory "fonts/".

This font directory is relative to the pwd during edje execution, but will at least allow view of Edje interfaces without having to drop all your fonts into /usr/local/share/edje/data/test/fonts.  This will be obsolete when font pathing is added as an EDC font parameter.


SVN revision: 7252
This commit is contained in:
technikolor 2003-07-28 19:48:18 +00:00 committed by technikolor
parent a8ed74dc0b
commit b209088702
1 changed files with 1 additions and 0 deletions

View File

@ -79,6 +79,7 @@ main_start(int argc, char **argv)
evas_image_cache_set(evas, 16 * 1024 * 1024);
evas_font_cache_set(evas, 1 * 1024 * 1024);
evas_font_path_append(evas, DAT"data/test/fonts");
evas_font_path_append(evas, "fonts");
return 1;
}