[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/ contour results in duplicated characters

2017-08-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84521

eisa01  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #24 from eisa01  ---
This works for me

Version: 5.4.0.3
Build ID: 7556cbc6811c9d992f4064ab9287069087d7f62c
CPU threads: 2; OS: Mac OS X 10.12.6; UI render: default; 
Locale: en-US (en_US.UTF-8); Calc: group

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/ contour results in duplicated characters

2016-09-26 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84521

Xisco Faulí  changed:

   What|Removed |Added

   Keywords|notBibisectable |bibisected, bisected, patch

--- Comment #23 from Xisco Faulí  ---
Adding keywords bibisected, bisected, patch

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/ contour results in duplicated characters

2016-09-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84521

Xisco Faulí  changed:

   What|Removed |Added

   Keywords|bibisectRequest |notBibisectable
 CC||xiscofa...@libreoffice.org

--- Comment #22 from Xisco Faulí  ---
For the time being, there isn't any bibisect repository covering the 4.3 branch
for MAC, thus removing the keyword 'bibisectRequest' and adding
'notBibisectable'

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2015-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84521

--- Comment #21 from Alex Thurgood  ---
*** Bug 89201 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2015-12-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84521

--- Comment #20 from Joel Madero  ---
I can't reproduce this in Linux (Bodhi Moksha) with Version: 5.2.0.0.alpha0+
Build ID: 5df326438fd3a5613a52b4de1935426911ff1301

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2015-04-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84521

Pierre-Eric Pelloux-Prayer  changed:

   What|Removed |Added

 Attachment #114564|0   |1
is obsolete||

--- Comment #18 from Pierre-Eric Pelloux-Prayer  ---
Created attachment 114565
  --> https://bugs.documentfoundation.org/attachment.cgi?id=114565&action=edit
naive patch

(sorry about the duplicate previous comment)

Had a quick look at this issue.
AFAIU the problem is indeed in the fallback code of
OutputDevice::GetTextOutlines().

This code seems to be barely used (if ever) on Linux so I'm not sure it gets a
lot of attention.

The bug cause is an invalid scaling value computed in text.cxx:
double fScaleX = static_cast< double >(nOrgWidth) / nWidth;
double fScaleY = static_cast< double >(nOrgHeight) / nHeight;

If you remove the call to:
aFont.SetSize( Size( 0, GLYPH_FONT_HEIGHT ) );
a few lines above this will fix the issue.

Another solution would be to drop (all?) this fallback code and make sure that
the CoreText backend works properly.

The attached patch does this in a naive way (and it fixes the issue). Basically
instead of propagating CT errors up, it will catch them and ignore the
problematic glyph.

Any CT expert to help?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2015-04-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84521

--- Comment #17 from Pierre-Eric Pelloux-Prayer  ---
Created attachment 114564
  --> https://bugs.documentfoundation.org/attachment.cgi?id=114564&action=edit
Ignore CT errors

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2015-04-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84521

--- Comment #16 from Pierre-Eric Pelloux-Prayer  ---

Before commit
https://gerrit.libreoffice.org/gitweb?p=core.git;a=commit;h=2ba05b4800d6cc322276a6911792363f8eb32051,
the output of CoreText was always used without checking returns code.

This introduced duplicate rendering because the partial result from CoreText
was drawn as well as the complete result from the fallback code path.
This was fixed with
https://gerrit.libreoffice.org/gitweb?p=core.git;a=commit;h=162f11cdb94b415ff9d58674e94fb01a745a69eb

For bug 84521 it looks like the fallback code produces an incorrect
transformation text -> polygon.

I'll try to fix this bug as well - if time permits.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2015-04-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84521

Matthew Francis  changed:

   What|Removed |Added

 CC||pell...@gmail.com

--- Comment #15 from Matthew Francis  ---
Adding Cc: to pell...@gmail.com

Hi - you recently did some work in bug 81876 which affected this bug (commit
162f11cdb94b415ff9d58674e94fb01a745a69eb et al). Is there any chance you could
take a look at this one too?

Attachment 114554 and attachment 114555 show a before and after comparison of
the effects of your commit. Before it looks like a correct rendering and a
"narrow" rendering are overlaid on one another, whereas after there is only one
rendering left - but unfortunately it's the "narrow" one.

Thanks

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2015-04-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84521

--- Comment #14 from Matthew Francis  ---
Created attachment 114555
  --> https://bugs.documentfoundation.org/attachment.cgi?id=114555&action=edit
After commit 162f11cdb94b415ff9d58674e94fb01a745a69eb

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2015-04-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84521

--- Comment #13 from Matthew Francis  ---
Created attachment 114554
  --> https://bugs.documentfoundation.org/attachment.cgi?id=114554&action=edit
Before commit 162f11cdb94b415ff9d58674e94fb01a745a69eb

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2015-04-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84521

--- Comment #12 from Matthew Francis  ---
Since the fix to bug 81876, the characters no longer appear to me to be
duplicated, but they are still "squished"

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84521

--- Comment #11 from Sergio  ---
(In reply to Matthew Francis from comment #10)
> The problem isn't visually identical but I wonder if this is related to bug
> 81876

I suppose it is related to bug 81876 because the problems occure only when
there are spaces in a text. In both bugs the text is doubled, but in different
ways.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2015-02-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84521

Matthew Francis  changed:

   What|Removed |Added

 CC||fdb...@neosheffield.co.uk
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=81
   ||876

--- Comment #10 from Matthew Francis  ---
The problem isn't visually identical but I wonder if this is related to bug
81876

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2015-02-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84521

Sergio  changed:

   What|Removed |Added

 CC||serbel17...@yandex.ru

--- Comment #9 from Sergio  ---
Created attachment 113202
  --> https://bugs.documentfoundation.org/attachment.cgi?id=113202&action=edit
The same problem. But it happens without space at the end.

The same problem. But it happens without space at the end.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84521

Matthew Francis  changed:

   What|Removed |Added

 Whiteboard|BSA, bibisectRequest|BSA bibisectRequest

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2014-12-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84521

Matthew Francis  changed:

   What|Removed |Added

 Whiteboard|BSA |BSA, bibisectRequest

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2014-12-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84521

Joel Madero  changed:

   What|Removed |Added

   Priority|high|medium
 CC||jmadero@gmail.com
   Severity|blocker |normal

--- Comment #8 from Joel Madero  ---
This is not a blocker - in 3 years on the project I've seen less than 5 bugs
that were legitimate blockers. Reprioriting bug:


Normal - can prevent high quality/professional work.
Medium - default seems appropriate.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2014-11-28 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84521

Björn Michaelsen  changed:

   What|Removed |Added

   Priority|highest |high

--- Comment #7 from Björn Michaelsen  ---
(This is an automated message.)

LibreOffice development currently prioritizes bugs with the so called MAB (most
annoying bugs) -- as this bug has not run through that process (including
writing a short rationale for this bug being a candidate and other who are
watching the tracker bug silently approving that rationale etc.) its priority
is set to high. Note this is effectively no change in the urgency assigned to
this bug, as we are currently not making a difference between high and highest
and severity is untouched.

You can find out more about MABs and how the process works by contacting
libreoffice qa on irc:

 http://webchat.freenode.net/?channels=libreoffice-qa

The QA wiki page also gives you hints on how to get in contact with the team
(if IRC fails you, your next best choice is the mailing list):

 https://wiki.documentfoundation.org/QA

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2014-10-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84521

--- Comment #6 from vil...@users.sourceforge.net ---
Could not reproduce on Debian "wheezy" 7.6 using LO 4.3.2.2 Build ID:
edfb5295ba211bd31ad47d0bad0118690f76407d.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2014-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84521

--- Comment #5 from Alex Thurgood  ---
Not present in Version: 4.2.4.2
Build ID: 63150712c6d317d27ce2db16eb94c2f3d7b699f8

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2014-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84521

Alex Thurgood  changed:

   What|Removed |Added

   Severity|normal  |blocker
   Priority|medium  |highest
   Keywords||regression

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2014-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84521

--- Comment #4 from Alex Thurgood  ---
Not present in Version: 4.1.4.2
Build ID: 0a0440ccc0227ad9829de5f46be37cfb6edcf72
regression

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2014-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84521

--- Comment #3 from Alex Thurgood  ---
Also present in master

Version: 4.4.0.0.alpha0+
Build ID: faf99f6f405e076d5c9ab95c876ae1ffb896f8d1

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2014-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84521

Alex Thurgood  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||ipla...@yahoo.co.uk
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2014-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84521

--- Comment #2 from Alex Thurgood  ---
Confirming on LO 432 and OSX 10.9.5

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84521] EDITING: Converting text with spaces to polygon/curve/contour results in duplicated characters

2014-09-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84521

--- Comment #1 from Mikko Ahlroth  ---
Forgot to add in the description (but remembered in the title!) that this also
happens when converting text to Curve, Contour and seemingly also 3D.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs