diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2010-04-15 00:10:49 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2010-04-15 00:10:49 (GMT) |
commit | 9d9ac32f7be34c9ac30b23cf55b3f383d6c70568 (patch) | |
tree | 62b799aa7c253fe3c86f48868a83cf4e38ce70af | |
parent | 9b04182107e35cd1cb924d2e98a9d099b3f8a1c5 (diff) | |
download | Qt-9d9ac32f7be34c9ac30b23cf55b3f383d6c70568.zip Qt-9d9ac32f7be34c9ac30b23cf55b3f383d6c70568.tar.gz Qt-9d9ac32f7be34c9ac30b23cf55b3f383d6c70568.tar.bz2 |
Fix localFont path in fonts example.
-rw-r--r-- | examples/declarative/fonts/fonts.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/declarative/fonts/fonts.qml b/examples/declarative/fonts/fonts.qml index 97dd645..ae31b03 100644 --- a/examples/declarative/fonts/fonts.qml +++ b/examples/declarative/fonts/fonts.qml @@ -7,7 +7,7 @@ Rectangle { color: "steelblue" FontLoader { id: fixedFont; name: "Courier" } - FontLoader { id: localFont; source: "fonts/tarzenau-ocr-a.ttf" } + FontLoader { id: localFont; source: "fonts/tarzeau_ocr_a.ttf" } FontLoader { id: webFont; source: "http://www.princexml.com/fonts/steffmann/Starburst.ttf" } Column { @@ -19,7 +19,7 @@ Rectangle { color: "lightsteelblue" width: parent.width elide: Text.ElideRight - font.family: "Times"; font.pointSize: 42 + font.family: "Times"; font.pointSize: 42 } Text { text: myText |