From b209088702f586ebaea1edd817b9afdbca367a6c Mon Sep 17 00:00:00 2001 From: technikolor Date: Mon, 28 Jul 2003 19:48:18 +0000 Subject: [PATCH] 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 --- legacy/edje/src/bin/edje_main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/legacy/edje/src/bin/edje_main.c b/legacy/edje/src/bin/edje_main.c index 61796526ed..148bed17ea 100644 --- a/legacy/edje/src/bin/edje_main.c +++ b/legacy/edje/src/bin/edje_main.c @@ -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; }