Minor tweek to edje viewer. Adds font path for local directory "fonts/".
authortechnikolor <technikolor>
Mon, 28 Jul 2003 19:48:18 +0000 (19:48 +0000)
committertechnikolor <technikolor@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 28 Jul 2003 19:48:18 +0000 (19:48 +0000)
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

index 61796526edcd52c0b744fcf9740a49d036bc4025..148bed17ea545610be8f39bc0d5e544655015fb8 100644 (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;
 }