diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2012-05-21 13:33:00 +0000 |
|---|---|---|
| committer | tavmjong-free <tavmjong@free.fr> | 2012-05-21 13:33:00 +0000 |
| commit | db0f8faa3ba62d0c60d5a6c5cc0dec479eb79021 (patch) | |
| tree | 73af93131adea94e7cf45b004f889c1bed2d61f1 /src/style.cpp | |
| parent | GTK+ 3 changes for cell-renderers (diff) | |
| download | inkscape-db0f8faa3ba62d0c60d5a6c5cc0dec479eb79021.tar.gz inkscape-db0f8faa3ba62d0c60d5a6c5cc0dec479eb79021.zip | |
Change default font to a CSS valid default font (Sans -> sans-serif).
(bzr r11393)
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 40cd1663e..a67852e11 100644 --- a/src/style.cpp +++ b/src/style.cpp @@ -3100,9 +3100,9 @@ sp_text_style_new() ts->refcount = 1; sp_text_style_clear(ts); - ts->font_specification.value = g_strdup("Sans"); - ts->font.value = g_strdup("Sans"); - ts->font_family.value = g_strdup("Sans"); + ts->font_specification.value = g_strdup("sans-serif"); + ts->font.value = g_strdup("sans-serif"); + ts->font_family.value = g_strdup("sans-serif"); return ts; } |
