Comment 97 for bug 689349

Revision history for this message
Sven Goossens (sgoossens) wrote :

In case you are a happy user of the workaround proposed by these comments:

https://bugs.launchpad.net/ubuntu/+source/openoffice.org/+bug/689349/comments/63
https://bugs.launchpad.net/ubuntu/+source/openoffice.org/+bug/689349/comments/92

I've modified the awk script to ignore some false positives:

#!/usr/bin/awk -f

# ignore points (pc?) with the lr/ul corner being the same
{if (($1==$4) && ($2==$5) && ($8 != "ef") && ($3 == "m") && ($6 == "l") && ($13 != "ct"))
        {next;}
}
{print}

Newest version will be here if I make more changes:
https://github.com/Sv3n/odg2epsfix