diff options
| author | John Smith <john.smith7545@yahoo.com> | 2012-08-16 08:20:16 +0000 |
|---|---|---|
| committer | John Smith <john.smith7545@yahoo.com> | 2012-08-16 08:20:16 +0000 |
| commit | b61db3c2d4c3d2fb497d62b4ddb3364031f5fdec (patch) | |
| tree | 5fcd18179bd2d75c411027dcc19f4957b1b1ce2d /src/desktop-style.cpp | |
| parent | code style (use NULL for pointers instead of 0) (diff) | |
| download | inkscape-b61db3c2d4c3d2fb497d62b4ddb3364031f5fdec.tar.gz inkscape-b61db3c2d4c3d2fb497d62b4ddb3364031f5fdec.zip | |
Fix for 168164 : Font sizes in points option
(bzr r11608)
Diffstat (limited to 'src/desktop-style.cpp')
| -rw-r--r-- | src/desktop-style.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/desktop-style.cpp b/src/desktop-style.cpp index b29799bb3..74e15e3e2 100644 --- a/src/desktop-style.cpp +++ b/src/desktop-style.cpp @@ -1096,6 +1096,8 @@ objects_query_fontstyle (GSList *objects, SPStyle *style_res) style_res->font_stretch.value = style_res->font_stretch.computed = style->font_stretch.computed; style_res->font_variant.value = style_res->font_variant.computed = style->font_variant.computed; style_res->text_align.value = style_res->text_align.computed = style->text_align.computed; + style_res->font_size.value = style->font_size.value; + style_res->font_size.unit = style->font_size.unit; } if (texts == 0 || !set) |
