diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2010-04-14 15:36:23 +0000 |
|---|---|---|
| committer | tavmjong-free <tavmjong@free.fr> | 2010-04-14 15:36:23 +0000 |
| commit | 29edecc65ee3fcec2320d3ad718e7f4dc3cff42a (patch) | |
| tree | 1442784a06cf56de1957bc1760be69c2fc8351c3 /src/style.cpp | |
| parent | Finally add myself to AUTHORS file as test of using Bazaar. (diff) | |
| download | inkscape-29edecc65ee3fcec2320d3ad718e7f4dc3cff42a.tar.gz inkscape-29edecc65ee3fcec2320d3ad718e7f4dc3cff42a.zip | |
Changed default font from Bitstream Vera Sans to Sans. Not
everyone has Bitstream Vera Sans and having a non-existant
default font can cause problems.
(bzr r9328)
Diffstat (limited to 'src/style.cpp')
| -rw-r--r-- | src/style.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/style.cpp b/src/style.cpp index 19ff711da..a05cef252 100644 --- a/src/style.cpp +++ b/src/style.cpp @@ -2783,9 +2783,9 @@ sp_text_style_new() ts->refcount = 1; sp_text_style_clear(ts); - ts->font_specification.value = g_strdup("Bitstream Vera Sans"); - ts->font.value = g_strdup("Bitstream Vera Sans"); - ts->font_family.value = g_strdup("Bitstream Vera Sans"); + ts->font_specification.value = g_strdup("Sans"); + ts->font.value = g_strdup("Sans"); + ts->font_family.value = g_strdup("Sans"); return ts; } |
