diff options
author | Jason Crain <jason@aquaticape.us> | 2012-08-27 22:42:11 -0500 |
---|---|---|
committer | Carlos Garcia Campos <carlosgc@gnome.org> | 2012-11-24 14:53:31 +0100 |
commit | 16812829a7d4816717731318b1aa1bc3ab5e3935 (patch) | |
tree | 652dfbdc65e298dde478ea2ddb3b23bdb233b89d /glib | |
parent | c93702bea0718d67660f2255344dcf9b0f502d57 (diff) |
Update fill and stroke color in CairoOutputDev::startPage
Keep fill_color and stroke_color from falling out of sync with
fill_pattern and stroke_pattern.
https://bugs.freedesktop.org/show_bug.cgi?id=54526
Diffstat (limited to 'glib')
-rw-r--r-- | glib/poppler-page.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glib/poppler-page.cc b/glib/poppler-page.cc index 84ceb7ea..b88c70bf 100644 --- a/glib/poppler-page.cc +++ b/glib/poppler-page.cc @@ -344,7 +344,7 @@ _poppler_page_render (PopplerPage *page, if (!printing && page->text == NULL) { - page->text = new TextPage(gFalse); + page->text = new TextPage (gFalse); output_dev->setTextPage (page->text); } /* NOTE: instead of passing -1 we should/could use cairo_clip_extents() |