~ubuntu-branches/ubuntu/raring/inkscape/raring-proposed

« back to all changes in this revision

Viewing changes to src/display/nr-arena-glyphs.cpp

  • Committer: Package Import Robot
  • Author(s): Alexander Valavanis
  • Date: 2012-12-19 13:45:59 UTC
  • mfrom: (1.6.4)
  • Revision ID: package-import@ubuntu.com-20121219134559-a9zechbo0ub4mnav
Tags: 0.48.4-0ubuntu1
* New upstream release (LP: #1091308).  Fixes several Ubuntu bugs:
  - Inkscape crashed with SIGSEGV in getObject() (LP: #941317)
  - Inkscape crashed with SIGSEGV in 
    Inkscape::Extension::Implementation::Script::effect() (LP: #944077)
  - Inkscape crashed with SIGSEGV in 
    Inkscape::Extension::Output::get_extension() (LP: #973174)
  - Overlay scrollbars causing input boxes to be small (LP: #946631)
* Drop 03_track_libpoppler25_abi_changes.patch: applied upstream
* Drop 04_track_libpoppler25_abi_changes_colorspace.patch: applied upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
456
456
        // FIXME: we use RGBA buffers but cairo writes BGRA (on i386), so we must cheat
457
457
        // by setting color channels in the "wrong" order
458
458
        cairo_set_source_rgba(ct, SP_RGBA32_B_F(rgba), SP_RGBA32_G_F(rgba), SP_RGBA32_R_F(rgba), SP_RGBA32_A_F(rgba));
459
 
        cairo_set_tolerance(ct, 1.25); // low quality, but good enough for outline mode
 
459
        cairo_set_tolerance(ct, 0.5); // low quality, but good enough for outline mode
460
460
 
461
461
        for (child = group->children; child != NULL; child = child->next) {
462
462
            NRArenaGlyphs *g = NR_ARENA_GLYPHS(child);