|
From: Tom H. - E. G. <no-...@en...> - 2013-07-31 13:32:05
|
tasn pushed a commit to branch master.
commit dfb2fb2de560ef5608b53ded07e040d9c97bb5aa
Author: Tom Hacohen <to...@st...>
Date: Wed Jul 31 14:31:23 2013 +0100
Evas Text object: Improved the docs explaining font selection.
---
src/lib/evas/Evas_Legacy.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/lib/evas/Evas_Legacy.h b/src/lib/evas/Evas_Legacy.h
index fed8086..2ea4cb2 100644
--- a/src/lib/evas/Evas_Legacy.h
+++ b/src/lib/evas/Evas_Legacy.h
@@ -5177,17 +5177,17 @@ EAPI void evas_object_text_font_source_set(Evas_Object *obj, con
EAPI const char *evas_object_text_font_source_get(const Evas_Object *obj) EINA_WARN_UNUSED_RESULT EINA_ARG_NONNULL(1);
/**
- * Set the font family and size on a given text object.
+ * Set the font family or filename, and size on a given text object.
*
* @param obj The text object to set font for.
- * @param font The font (family) name.
+ * @param font The font family name or filename.
* @param size The font size, in points.
*
* This function allows the font name and size of a text object to be
* set. The @p font string has to follow fontconfig's convention on
* naming fonts, as it's the underlying library used to query system
* fonts by Evas (see the @c fc-list command's output, on your system,
- * to get an idea).
+ * to get an idea). Alternatively, one can use a full path to a font file.
*
* @see evas_object_text_font_get()
* @see evas_object_text_font_source_set()
--
|