Actually prepend to the font path in Evas#font_path_prepend.
authorTilman Sauerbeck <tilman@code-monkey.de>
Thu, 25 May 2006 09:21:10 +0000 (09:21 +0000)
committerTilman Sauerbeck <tilman@code-monkey.de>
Thu, 25 May 2006 09:21:10 +0000 (09:21 +0000)
src/rb_evas.c

index ff76dba1f7b3c8bf02b179972f6914d7ba51b0c9..ff34c25d2dbf4383aad48a0ea3de175683500656 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: rb_evas.c 382 2006-05-25 09:20:31Z tilman $
+ * $Id: rb_evas.c 383 2006-05-25 09:21:10Z tilman $
  *
  * Copyright (C) 2004 Tilman Sauerbeck (tilman at code-monkey de)
  *
@@ -113,7 +113,7 @@ static VALUE c_font_path_prepend (VALUE self, VALUE path)
 {
        GET_OBJ (self, RbEvas, e);
 
-       evas_font_path_append (e->real, StringValuePtr (path));
+       evas_font_path_prepend (e->real, StringValuePtr (path));
 
        return Qnil;
 }