[Libreoffice-bugs] [Bug 49319] EDITING: Cannot change a polygon point to Smooth Transition (see comment 17)

2022-04-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49319

--- Comment #34 from David F Smith  ---
I have retested with 
Version: 7.2.6.2 (x64) / LibreOffice Community
Build ID: b0ec3a565991f7569a5a7f5d24fed7f52653d754
CPU threads: 4; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded
My test steps, and the results, were exactly the same as in my Comment 17.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 49319] EDITING: Cannot change a polygon point to Smooth Transition (see comment 17)

2020-04-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49319

Julien Nabet  changed:

   What|Removed |Added

   Assignee|serval2...@yahoo.fr |libreoffice-b...@lists.free
   ||desktop.org
 Status|ASSIGNED|NEW

--- Comment #32 from Julien Nabet  ---
Patch was wrong, I abandoned it.
=> unassign myself

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition (see comment 17)

2020-04-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49319

Julien Nabet  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |serval2...@yahoo.fr
   |desktop.org |

--- Comment #31 from Julien Nabet  ---
I submitted this patch for review:
https://gerrit.libreoffice.org/c/core/+/91705

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition (see comment 17)

2020-04-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49319

--- Comment #30 from Julien Nabet  ---
After some debugging on gdb, I noticed this part of bt:
#0  basegfx::getContinuity(basegfx::B2DVector const&, basegfx::B2DVector
const&) (rBackVector=..., rForwardVector=...) at
basegfx/source/vector/b2dvector.cxx:169
#1  0x7fffec561661 in basegfx::B2DPolygon::getContinuityInPoint(unsigned
int) const (this=0x7e99400, nIndex=2) at
basegfx/source/polygon/b2dpolygon.cxx:1387
#2  0x71be4c35 in ImplPolygon::ImplPolygon(basegfx::B2DPolygon const&)
(this=0x7ffeeb00, rPolygon=bezier curve basegfx::B2DPolygon = {...}) at
tools/source/generic/poly.cxx:414
0x71beb7c9 in tools::Polygon::Polygon(basegfx::B2DPolygon const&)
(this=0x7ffeebb0, rPolygon=bezier curve basegfx::B2DPolygon = {...}) at
tools/source/generic/poly.cxx:1862
0x735aec43 in XPolygon::XPolygon(basegfx::B2DPolygon const&)
(this=0x7ffeec50, rPolygon=bezier curve basegfx::B2DPolygon = {...}) at
svx/source/xoutdev/_xpoly.cxx:826
0x735aef73 in XPolyPolygon::XPolyPolygon(basegfx::B2DPolyPolygon
const&) (this=0x7ffeed70, rPolyPolygon=open basegfx::B2DPolyPolygon with 1
sub-polygon(s) = {...})
at svx/source/xoutdev/_xpoly.cxx:855
#6  0x73205f10 in SdrPathObj::AddToPlusHdlList(SdrHdlList&, SdrHdl&)
const (this=0x35c38c0, rHdlList=..., rHdl=...) at
svx/source/svdraw/svdopath.cxx:2006

"B2VectorContinuity::getContinuity" should return "B2VectorContinuity::C1"
but areParallel(rBackVector, rForwardVector) return false where it should
return true.
See
https://opengrok.libreoffice.org/xref/core/basegfx/source/vector/b2dvector.cxx?r=1d92933d#167

Here are the values retrieved (std::cerr << setprecision(15) << ...):
fValA=33122.8002951872
fValB=33122.8002951847

Here's the code of b2dvector.cxx::areParallel:
118  bool areParallel( const B2DVector& rVecA, const B2DVector& rVecB )
119  {
120  const double fValA(rVecA.getX() * rVecB.getY());
121  const double fValB(rVecA.getY() * rVecB.getX());
122  
123  return fTools::equal(fValA, fValB);
124  }
See
https://opengrok.libreoffice.org/xref/core/basegfx/source/vector/b2dvector.cxx?r=1d92933d#118

Just "relaxing" a bit the equal comparison allows to return true in our case.

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition (see comment 17)

2020-04-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49319

--- Comment #29 from Julien Nabet  ---
(In reply to Julien Nabet from comment #28)
> I could reproduce this on Draw with the file attached.
> 
> Except if I miss something, I don't reproduce this on Writer after having
> inserted a curve line.

Argh, I reproduced this also on Writer.

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition (see comment 17)

2020-04-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49319

--- Comment #28 from Julien Nabet  ---
I could reproduce this on Draw with the file attached.

Except if I miss something, I don't reproduce this on Writer after having
inserted a curve line.

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition (see comment 17)

2020-04-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49319

--- Comment #27 from Julien Nabet  ---
(In reply to Julien Nabet from comment #26)
> I watched the video but don't know how to make these buttons appear on pc
> Debian x86-64 with master sources updated today.

Ok it's "Edit points".

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition (see comment 17)

2020-04-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49319

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #26 from Julien Nabet  ---
I watched the video but don't know how to make these buttons appear on pc
Debian x86-64 with master sources updated today.

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition (see comment 17)

2019-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49319

David F Smith  changed:

   What|Removed |Added

Summary|EDITING: Cannot change a|EDITING: Cannot change a
   |polygon point to Smooth |polygon point to Smooth
   |Transition  |Transition (see comment 17)

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2019-07-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49319

--- Comment #25 from David F Smith  ---
I have retested with LO Version: 6.2.4.2 (x64)
(Build ID: 2412653d852ce75f65fbfa83fb7e7b669a126d64
CPU threads: 4; OS: Windows 10.0; UI render: default; VCL: win; 
Locale: en-US (en_US); UI-Language: en-US
Calc: threaded)
under Microsoft Windows 10 Pro  
(Version 10.0.17763 Build 17763)
My test steps, and the results, were exactly the same as in my Comment 17

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2019-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49319

--- Comment #24 from QA Administrators  ---
Dear David F Smith,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2018-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49319

--- Comment #23 from David F Smith  ---
I have retested with LO version: 6.0.5.2 (x64)
(Build ID: 54c8cbb85f300ac59db32fe8a675ff7683cd5a16
CPU threads: 4; OS: Windows 10.0; UI render: default; 
Locale: en-US (en_US); Calc: group)
under Windows 10 Pro (10.0.17134 Build 17134).
My test steps, and the results, were exactly the same as in my Comment 17,
which means this bug is more than 6 years old.

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2018-06-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49319

--- Comment #22 from Regina Henschel  ---
The error still exists in Version: 6.2.0.0.alpha0+ (x64)
Build ID: c3e552ac25be001a623469c549ee8d0719b98133
CPU threads: 8; OS: Windows 10.0; UI render: default; 
Locale: de-DE (de_DE); Calc: CL

The toolbar shows "symmetric" and dragging the handle, it acts like symmetric.
But when saving the file, it contains a command "c" where it should be a
command "s".

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2018-06-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49319

--- Comment #21 from QA Administrators  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2017-03-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49319

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de

--- Comment #20 from Regina Henschel  ---
I have tested the behavior in Version: 5.4.0.0.alpha0+
Build ID: eb7b03b052ffe8c2c577b2349987653db6c53f76
CPU threads: 4; OS: Windows 6.1; UI render: default; 
TinderBox: Win-x86@62-merge-TDF, Branch:MASTER, Time: 2017-02-26_22:34:18
Locale: de-DE (de_DE); Calc: group

There are still problems. I have drawn a Bézier curve with four point. Now I
cannot leave symmetric transition. Sometimes if I switch the middle segment to
straight line and go back to curve, I can then switch the transition kinds. But
then again it sticks in one kind. Unfortunately I cannot give you a always
working scenario. It is annoying.

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition

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

--- Comment #19 from David F Smith  ---
For what it's worth, I have retested this with version 5.2.2.2
(Build ID: 8f96e87c890bf8fa77463cd4b640a2312823f3ad)
under Windows 10 (version 10.0.10586)
and it still fails.

The behavior is exactly the same as in my comment 17.

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2016-04-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49319

Joel Madero  changed:

   What|Removed |Added

 CC||jmadero@gmail.com

--- Comment #18 from Joel Madero  ---
Thanks for the update

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2016-04-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49319

--- Comment #17 from David F Smith  ---
I have retested the bug with LO 5.1.2.2 (Build ID:
d3bf12ecb743fc0d20e0be0c58ca359301eb705f) under Windows 7 Pro (v 6.1.7601 SP1).
 I used the same procedure described in Comment 12, using the Zigzag.odg file:
1. I select the polyline and then the third (middle) point.
2. I click the Smooth Transition button, but it does not remain selected. 
(Corner Point is selected instead.)  The shape of the polyline changes, so that
there is a rounded curve at the middle point, but if I move one of the control
points, the other point does not move, showing that point 3 is still a corner
point.
3. I select the fourth point and then click Smooth Transition.  The shape
changes to a rounded curve, as above, but Corner Point button remains selected.
 I click Smooth Transition twice more, and Corner Point remains selected.  I
move one of the control points, but the other does not move, showing that point
4 is still a corner point.

The behavior is still wrong, and it has been consistently wrong in this test
for about four years, back to at least version 3.5.2.

Please note the source of confusion that became apparent in comments 14 and 15.
 A sharp angle at one point can become a rounded curve (as if the point became
a Smooth Transition), but if the control points can be moved independently,
it's still a corner.  The issue is the actual state of the point, not the shape
of the curve or the state of the button.

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2016-04-16 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49319

--- Comment #16 from tommy27  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present on a currently supported version of
LibreOffice (5.0.5 or 5.1.2 https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the version of
LibreOffice and your operating system, and any changes you see in the bug
behavior

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a short comment that includes your version of
LibreOffice and Operating System

Please DO NOT

- Update the version field
- Reply via email (please reply directly on the bug tracker)
- Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so: 

1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3)

http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug 

3. Leave a comment with your results. 

4a. If the bug was present with 3.3 - set version to "inherited from OOo"; 
4b. If the bug was not present in 3.3 - add "regression" to keyword


Feel free to come ask questions or to say hello in our QA chat:
http://webchat.freenode.net/?channels=libreoffice-qa

Thank you for your help!

-- The LibreOffice QA Team This NEW Message was generated on: 2016-04-16

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2015-03-11 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=49319

--- Comment #15 from David F Smith davidjudysm...@gmail.com ---
I have retested using LO Version 4.4.1.2
(Build ID: 45e2de17089c24a1fa810c8f975a7171ba4cd432)
under Windows 7 Professional (6.1.7601 Service Pack 1) 
and the bad behavior persists.
I disagree with Owen Genat's characterization of the problem in Comment 14, but
it's a subtle point.  When I click on the Smooth Transition button (having
selected one of the points of my Zigzag.odg, uploaded with my Comment 3), the
shape of the curve changes at that point to the rounded shape that a smooth
transition would have.  However, that point does not become a smooth
transition, but remains a corner.  On a smooth transition, moving one of the
control points causes the other to move in the opposite direction.  If the
control points move independently, that's a corner point.

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2013-11-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49319

Owen Genat owen.ge...@gmail.com changed:

   What|Removed |Added

   Hardware|x86 (IA32)  |All
 OS|Windows (All)   |All
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #13 from Owen Genat owen.ge...@gmail.com ---
David, I can confirm that there is strange behaviour regarding the Smooth
Transition button for versions of LO going back to v3.3. The ODG you have
provided in comment #3 (created in v3.5.2.2) seems to display the problem for
all three corner points, which may be a factor of the draw:transform=rotate
(0.988903554179987) translate (3.159cm 13.7cm) attribute i.e. you have rotated
and moved the polygon at some point. When I drew a new M shaped polygon I found
the results more variable, which was disheartening. Status set to NEW. Platform
set to All/All. Not sure what to do about the Version. It may need to be set
back Inherited From OOo, but I would like QA to confirm this.

I first opened your ODG under Ubuntu 10.04 x86_64 running these versions:

- v3.3.0.4 OOO330m19 Build: 6
- v3.4.6.2 OOO340m1 Build: 602
- v3.5.7.2 Build ID: 3215f89-f603614-ab984f2-7348103-1225a5b
- v3.6.7.2 Build ID: e183d5b
- v4.0.6.2 Build ID: 2e2573268451a50806fcd60ae2d9fe01dd0ce24
- v4.1.3.2 Build ID: 70feb7d99726f064edab4605a8ab840c50ec57a

EVERY version displays the indicated behaviour of the Smooth Transition button
not staying selected (for each of the three points). The Symmetric Transition
button does not display this behaviour. I was so concerned by this result I
tried the same tests again under Crunchbang 11 x86_64 Openbox + XFCE system
running the last five versions listed above and v3.3.4.1 OOO330m19 Build: 401
(instead of v3.3.0.4) in case I was experiencing a desktop-related error. The
results were identical. 

I then tried creating new M diagrams in each of the 12 OS + LO version
combinations and while there is definitely a problem with the Smooth Transition
button not staying in a selected state I could find no discernible pattern for
which points worked as expected and which did not e.g., number of corners,
corner angle, ordinal position in the polygon, vertical offset, etc. The only
observable pattern seemed to be that once a diagram was drawn the same points
would exhibit the same behaviour in all versions of LO.

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2013-11-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49319

--- Comment #14 from Owen Genat owen.ge...@gmail.com ---
Oh I forgot, it may be worthwhile changing the summary from EDITING: Cannot
change a polygon point to Smooth Transition to EDITING: Smooth Transition
button does not remain selected as this would seem a more accurate reflection
of the issue. The actual polygon point does change to a Smooth Transition, it
is just that the change / selection is not reflected in the toolbar.

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2013-07-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49319

QA Administrators qa-ad...@libreoffice.org changed:

   What|Removed |Added

 QA Contact||qa-ad...@libreoffice.org

--- Comment #10 from QA Administrators qa-ad...@libreoffice.org ---
Dear Bug Submitter,

Please read the entire message in its entirety before continuing - also please
respond directly to FDO when replying - do not reply via email.

This bug has been in NEEDINFO status with no change for at least 6 months.
Please provide the requested information as soon as possible and mark the bug
as UNCONFIRMED. Due to regular bug tracker maintenance, if the bug is still in
NEEDINFO status with no change in 30 days the QA team will close the bug as
INVALID due to lack of needed information.

For more information about our NEEDINFO policy please read the wiki located
here: 
https://wiki.documentfoundation.org/QA/FDO/NEEDINFO

If you have already provided the requested information, please mark the bug as
UNCONFIRMED so that the QA team knows that the bug is ready to be confirmed.


Thank you for helping us make LibreOffice even better for everyone!


Warm Regards,
QA Team

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2013-07-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49319

David F Smith davidjudysm...@gmail.com changed:

   What|Removed |Added

  Attachment #60817|0   |1
is obsolete||
  Attachment #60918|0   |1
is obsolete||

--- Comment #11 from David F Smith davidjudysm...@gmail.com ---
Created attachment 82615
  -- https://bugs.freedesktop.org/attachment.cgi?id=82615action=edit
Video shows failure to select Smooth Transition for two points of a polyline

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2013-07-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49319

David F Smith davidjudysm...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #12 from David F Smith davidjudysm...@gmail.com ---
It is not clear to me from the message exactly what info is needed.  Therefore
I have retested the bug with 4.0.4.2 under Windows 7 Professional (6.1.7601
Service Pack 1) and recorded a new video of the bad behavior.
Here is the script for the video, which shows operations on Zigzag.odg
(previously attached).
1. I select the polyline and then the third point.
2. I click the Smooth Transition button, but it does not remain selected. 
(Corner Point is selected instead.)  I move one of the control points, but the
other point does not move, showing that point 3 is still a corner point.
3. I select the fourth point and then click Smooth Transition.  The Corner
Point button remains selected.  I click Smooth Transition twice more.  I move
one of the control points, showing that point 4 is still a corner point.

The incorrect behavior does not happen for every point of every polyline, but
the above steps for this document have been reproducible in all versions of
LibreOffice for me.

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2012-11-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49319

--- Comment #9 from David F Smith davidjudysm...@gmail.com ---
I have retested under 3.6.3.2 (Build ID: 58f22d5), still on Win 7 Pro
(v6.1.7601), and the problem still remains.  I open zigzag.odg, select the
polyline, select the center point, and click on Smooth Transition, and the
Corner Point button remains selected.  (And the point is still, in fact, a
corner.)

-- 
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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2012-09-18 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49319

Hashem Masoud wraithl...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever Confirmed|0   |1

--- Comment #8 from Hashem Masoud wraithl...@gmail.com 2012-09-18 20:10:30 
UTC ---
(In reply to comment #7)
 I have retested on 3.5.5.3 under Windows 7 Pro, and the problem still remains
 for me.  The behavior is exactly as shown in my attached video.

Testing with:
Version 3.6.0.4 (Build ID: 932b512) Slackware Linux 13.37
Works for me. Please try with the latest version and reply.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2012-07-13 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49319

--- Comment #7 from David F Smith davidjudysm...@gmail.com 2012-07-13 
15:44:11 PDT ---
I have retested on 3.5.5.3 under Windows 7 Pro, and the problem still remains
for me.  The behavior is exactly as shown in my attached video.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2012-05-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49319

--- Comment #5 from David F Smith davidjudysm...@gmail.com 2012-05-02 
07:54:22 PDT ---
Thanks, Rainer.  You're right that the two issues may be different, but every
time the indicator button has gone back to Corner Point and I have checked it
(by moving one of the control points), it has in fact been a Corner Point.
Anyway, thanks for your attempts to reproduce the problem.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2012-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49319

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||LibreOffice@bielefeldundbus
   ||s.de
 Ever Confirmed|0   |1

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-04-30 23:46:01 PDT ---
NOT Reproducible with LibreOffice 3.5.3.2 (RC2) German UI/Locale [Build-ID:
235ab8a-3802056-4a8fed3-2d66ea8-e241b80] on German WIN7 Home Premium (64bit).

I created a sample document with a zig zag line similar to the one in
reporter's screenshot and was able to create smooth transitions without
problems. An additional test with a 18 corners zig zag line also did not show
any problem, I modified all corners.

@David F Smith:
Thank you for your report – unfortunately important information is missing.
May be hints on http://wiki.documentfoundation.org/BugReport will help you to
find out what information will be useful to reproduce your problem? If you
believe that that  is really sophisticated please as for Help on a user mailing
list
Please:
- Attach a sample document (not only screenshot) or refer to an existing 
  sample document in an other Bug with a link.
- Contribute a sample document related step by step instruction containing 
  every key press and every mouse click how to reproduce your problem 
  (due to example in Bug 43431)
– if possible contribute an instruction how to create a sample document 
  from the scratch
- add information 
  -- concerning your PC (video card, ...)
  -- concerning your OS (Version, Distribution, Language)
  -- concerning your LibO localization (UI language, Locale setting)
  –- Libo settings that might be related to your problems 
(video hardware acceleration ...)
  -- how you launch LibO and how you opened the sample document
  -- everything else crossing your mind after you read linked texts

Even  if you can not provide all demanded information, every little new
information might bring the breakthrough.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2012-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49319

--- Comment #2 from David F Smith davidjudysm...@gmail.com 2012-05-01 
13:05:53 PDT ---
Created attachment 60867
  -- https://bugs.freedesktop.org/attachment.cgi?id=60867
Shows creation of a polygon, then attempts to convert point to Smooth
Transition

In the movie, I create the 5-point polygon.  Then I select the second point, a
Corner Point, and click Smooth Transition repeatedly.  The Smooth Transition
button does not stick, and in fact the point is still a Corner Point, as I
demonstrate by moving one of its control points.
This problem is not completely reproducible for me, either, but as you see, it
does happen.

Computer: Dell Inspiron 620, x64-based desktop, Intel Core i5-2320 CPU
OS: Microsoft Windows 7 Professional, v6.1.7601 SP1
Graphics: Intel HD Graphics adapter
LibreOffice 3.5.2.2, Build ID: 281b639-6baa1d3-ef66a77-d866f25-f36d45f
installed from
http://mirror.clarkson.edu/tdf/libreoffice/stable/3.5.2/win/x86/LibO_3.5.2_Win_x86_install_multi.msi

I have also previously installed LibreOffice 3.5.1 on an XP Mode Windows
Virtual PC (XP v5.1.2600, SP3) on the same computer, and the behavior is
exactly the same.

Thanks very much for your efforts to reproduce this.  I hope you can find
something.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2012-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49319

--- Comment #3 from David F Smith davidjudysm...@gmail.com 2012-05-01 
14:09:29 PDT ---
Created attachment 60873
  -- https://bugs.freedesktop.org/attachment.cgi?id=60873
Drawing document that shows the behavior

Zigzag.odg is a drawing of a zigzag polyline.  In my copy of LibreOffice
Drawing, if I select the middle point and try to change it to a Smooth
Transition, it fails.  (If I select the second point from the left, it works
correctly.)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2012-05-01 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49319

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever Confirmed|1   |0

--- Comment #4 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-05-01 21:48:44 PDT ---
Let's distinguish 2 different (but may be related, I do not know) problems:

a) reporter sometimes fails to change a corner t a smooth transition
   This is not reproducible for me 
b) behavior of icon active indicator for several point actions is is at least 
   not easy to understand. I believe it's wrong and will do some further 
   research later

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 49319] EDITING: Cannot change a polygon point to Smooth Transition

2012-04-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49319

David F Smith davidjudysm...@gmail.com changed:

   What|Removed |Added

   Platform|Other   |x86 (IA32)
 OS/Version|All |Windows (All)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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