Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Modeling » Graphiti » Connections between BoxRelativeAnchors with different GAs
Connections between BoxRelativeAnchors with different GAs [message #792960] Tue, 07 February 2012 15:58 Go to next message
Craig Petre is currently offline Craig PetreFriend
Messages: 32
Registered: April 2011
Member
Hey, I'm having some trouble making connections between BoxRelativeAnchors with different contained GraphicsAlgorithm. Here a screen shot of the issue I'm having:

index.php/fa/7059/0/

The top connections are between 3 separate BoxRelativeAnchors. The left and right anchors contain a RoundedRectangle while the center anchor contains an Ellipse, they are setup like the following:

		
final ContainerShape portShape = PictogramsFactory.eINSTANCE.createContainerShape();
portShape.getProperties().addAll(new ArrayList<Property>(0));
portShape.setVisible(true);
portShape.setActive(true);

final Rectangle portRectangle = ga.createRectangle(portShape);

final BoxRelativeAnchor anchor = pe.createBoxRelativeAnchor(portShape);
anchor.setReferencedGraphicsAlgorithm(portRectangle);
anchor.setRelativeHeight(0);
anchor.setRelativeWidth(0);

final RoundedRectangle rect = ga.createRoundedRectangle(anchor, 5, 5);


The center anchor is created like this:
final ContainerShape rootShape = this.createContainerShape(targetDiagram, obj);
final Rectangle extRect = ga.createInvisibleRectangle(rootShape);
final int offsetFromCenter = (int) ((10 * 1.6) / 2);

extRect.setX(xloc - offsetFromCenter);
extRect.setY(yloc - offsetFromCenter);

final BoxRelativeAnchor anchor = pe.createBoxRelativeAnchor(rootShape);
anchor.setReferencedGraphicsAlgorithm(extRect);
anchor.setRelativeHeight(0);
anchor.setRelativeWidth(0);

final Ellipse dot = ga.createEllipse(anchor);
dot.setForeground(this.manageColor(255, 0, 0));
dot.setBackground(this.manageColor(0, 0, 255));


And as you can see, the end point of the connection to the middle anchor does not end up in the center. The only difference between the first three connections, where the end points are off center and the second set of three connections where they are on center, is I changed the middle anchor to contain a RoundedRectangle as in the case of the left and right anchors instead of an Ellipse.

//final Ellipse dot = ga.createEllipse(anchor);
final RoundedRectangle dot = ga.createRoundedRectangle(anchor, 5, 5);
dot.setForeground(this.manageColor(255, 0, 0));
dot.setBackground(this.manageColor(0, 0, 255));


I would expect the anchor to behave the same regardless of the contained shape, but maybe that assumption isn't valid, or maybe there is something wrong with my implementation?

Thanks,
Craig
  • Attachment: anchors.png
    (Size: 1.47KB, Downloaded 527 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #794456 is a reply to message #792960] Thu, 09 February 2012 10:11 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
Craig,

this looks kind of strange and I cannot explain that...

Where do you set the sizes of the involved graphics algorithms? The middle
shape uses a different approach than the other two (invisible rectangle
around); is there a specific reason?

Michael
Re: Connections between BoxRelativeAnchors with different GAs [message #794542 is a reply to message #794456] Thu, 09 February 2012 12:21 Go to previous messageGo to next message
Craig Petre is currently offline Craig PetreFriend
Messages: 32
Registered: April 2011
Member
Hi Michael. The reason for the invisible rectangle around is that the "dot" can be moved by the user. So if they click on the dot, they can begin a connection and if they click around the edge of the dot they can move it.

The dot extends AbstractPattern and the size is set in the overridden "layout" function. Here are the contents of that function.

final IGaService ga = Graphiti.getGaService();
final Shape shape = (Shape) context.getPictogramElement();

// Layout the invisible rectangle
final int width = (int) (10 * 1.6);
ga.setSize(shape.getGraphicsAlgorithm(), width, width);

// Layout the anchor circle
final int offset = (width - 10) / 2;
		ga.setLocationAndSize(shape.getAnchors().get(0).getGraphicsAlgorithm(), offset, offset, 10, 10);

return true;


I probably should have mentioned this before, but the two exterior connection points in the screen shot are part of a larger composite geometry (also extending AbstractPattern) whose sizing is also taken care of in the layout function. Here is a distilled version of the layout function which pertains only to the port sections of the pattern.

ga.setLocationAndSize(shape.getGraphicsAlgorithm(), 0, 21, 39, 19);
//Layout the anchor pad
ga.setLocationAndSize(shape.getAnchors().get(0).getGraphicsAlgorithm(), 29, 9, 10, 10);


The above is from a debug run of the layout of the port on the left side of the screen shot. There could be several ports on any given side and the "shape" referenced above actually looks something like ---[] with the anchor being the rectangle at the end.

Thanks for getting back to me, let me know if more information would be helpful,
Craig
Re: Connections between BoxRelativeAnchors with different GAs [message #868010 is a reply to message #792960] Tue, 01 May 2012 15:46 Go to previous messageGo to next message
Craig Petre is currently offline Craig PetreFriend
Messages: 32
Registered: April 2011
Member
Sorry to bring this up again, but I believe I've been able to reproduce the issue I was seeing above (and still see) in the sketch tool. There are a couple things in the screen shots below that look a little weird. The first image at 0% zoom is a FreeFormConnection between two RoundedRectangles and another between a RoundedRectangle and Ellipse from the sketch palette. The connection between the RoundedRectangle and Ellipse seems to trail upwards from left to right instead of being perfectly horizontal as in the RoundedRectangle to RoundedRectangle case. In the second screen shot at 400% (same exact geometries/connections) you can see they end up looking about the same, though maybe this is just distortion from the zoom or something and not an actual improvement, it is hard to tell. The second thing I notice is that the connection is not centered on the grid, which is most obvious at the 400% zoom. I'm not sure what causes this, in some cases I am able to draw connections that do end up on grid, so the cases I'm illustrating here may be intermittent. The last small issue I see is that the right side of the connection always contains a space between the end of the connection and the start of the anchor. It doesn't seem to matter where you start or end the connection or between what anchor, the space is always there and always on the right side of the connection.

index.php/fa/8153/0/

index.php/fa/8154/0/

Any ideas? Or maybe I have enough information now where it may be helpful to file a bug report?

Thanks,
Craig
  • Attachment: no_zoom.png
    (Size: 5.33KB, Downloaded 259 times)
  • Attachment: 400_zoom.png
    (Size: 26.21KB, Downloaded 286 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868586 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 134 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 134 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868590 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 139 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 145 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868593 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 134 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 137 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868597 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 145 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 131 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868600 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 140 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 137 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868602 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 138 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 140 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868606 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 137 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 143 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868608 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 131 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 128 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868611 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 123 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 128 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868614 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 125 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 145 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868619 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 132 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 134 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868624 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 144 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 129 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868627 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 136 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 134 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868629 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 128 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 128 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868632 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 134 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 129 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868634 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 150 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 124 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868636 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 129 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 133 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868639 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 141 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 138 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868642 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 127 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 132 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868644 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 135 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 147 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868647 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 142 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 141 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868651 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 123 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 118 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868654 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 143 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 128 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868657 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 138 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 129 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868659 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 125 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 132 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868661 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 150 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 135 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868664 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 132 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 136 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868666 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 137 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 128 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868668 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 135 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 130 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868670 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 127 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 136 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868672 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 134 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 145 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868674 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 150 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 131 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868676 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 131 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 140 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868680 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 132 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 130 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868682 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 123 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 122 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868684 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 134 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 120 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868686 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 129 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 129 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868689 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 134 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 130 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868691 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 125 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 121 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868693 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 131 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 131 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868697 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 126 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 142 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868701 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 130 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 121 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868705 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 132 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 122 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868711 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 120 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 135 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868715 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 112 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 124 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868717 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 141 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 130 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868721 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 117 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 120 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868723 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 124 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 118 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868726 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 128 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 130 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868729 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 132 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 123 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868732 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 118 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 136 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868735 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 121 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 138 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868737 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 140 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 131 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868741 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 124 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 124 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868743 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 121 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 137 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868746 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 122 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 114 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868750 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 123 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 115 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868754 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 123 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 130 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868758 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 110 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 137 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868761 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 125 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 118 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868764 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 116 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 113 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868766 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 117 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 117 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868770 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 131 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 120 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868774 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 133 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 125 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868776 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 114 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 132 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868778 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 135 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 111 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868782 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 139 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 123 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868785 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 112 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 130 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868789 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 130 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 115 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868793 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 117 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 136 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868796 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 123 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 113 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868799 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 118 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 123 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868803 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 118 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 129 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868805 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 115 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 122 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868807 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 127 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 138 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868810 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 133 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 127 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868813 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 126 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 115 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868816 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 110 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 125 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868819 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 120 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 121 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868823 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 124 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 135 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868825 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 141 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 118 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868828 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 119 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 122 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868830 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 118 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 116 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868835 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 123 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 132 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868838 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 122 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 124 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868840 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 115 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 124 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868844 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 121 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 119 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868846 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 126 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 128 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868851 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 122 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 126 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868854 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 134 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 133 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868858 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 118 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 128 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868862 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 119 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 107 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868864 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 125 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 125 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868867 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 123 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 112 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868871 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 129 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 123 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868874 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 125 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 113 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868876 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 122 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 127 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868878 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 134 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 113 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868880 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 129 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 118 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868883 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 121 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 128 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868886 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 115 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 117 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868888 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 126 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 127 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868890 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 122 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 128 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868892 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 119 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 124 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868894 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 120 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 115 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868896 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 122 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 119 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868898 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 125 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 126 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868900 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 119 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 120 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868903 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 106 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 126 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868907 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 131 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 130 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868909 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 116 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 115 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868911 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 116 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 121 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868913 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 109 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 111 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868918 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 116 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 113 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868921 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 121 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 121 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868924 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 127 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 120 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868926 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 122 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 130 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868929 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 112 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 118 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868933 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 124 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 115 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868936 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 122 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 124 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868942 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 114 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 116 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868944 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 124 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 121 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868947 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 113 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 132 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868952 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 118 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 125 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868954 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 115 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 133 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868957 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 115 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 109 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868959 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 125 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 118 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868961 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 100 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 106 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868967 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 102 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 114 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868971 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 112 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 113 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868973 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 99 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 107 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868975 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 107 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 112 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868977 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 101 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 97 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868979 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 97 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 99 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868983 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 97 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 103 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868985 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 96 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 96 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868986 is a reply to message #792960] Wed, 02 May 2012 20:19 Go to previous messageGo to next message
Craig Petre is currently offline Craig PetreFriend
Messages: 32
Registered: April 2011
Member
When I pulled from the git master branch the only update I saw was the one for the focus issue, so I believe I was using the most recent. Tried again to be sure and was still able to reproduce it. I've attached my diagram file if that is helpful. The bug for the space issue is: 378301

Thanks,
Craig
Re: Connections between BoxRelativeAnchors with different GAs [message #868989 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 109 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 94 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868992 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 88 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 99 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868994 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 101 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 103 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868996 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 95 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 111 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #868998 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 95 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 95 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869000 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 100 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 91 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869002 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 104 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 105 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869004 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 96 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 94 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869006 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 100 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 77 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869009 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 70 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 73 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869012 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 91 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 66 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869014 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 73 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 82 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869016 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 80 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 77 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869020 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 87 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 77 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869024 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 73 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 80 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869026 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 74 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 78 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869028 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 90 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 84 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869030 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 74 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 80 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869034 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 83 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 79 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869036 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 93 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 78 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869038 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 81 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 75 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869040 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 87 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 83 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869043 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 74 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 88 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869046 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 79 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 80 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869048 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 69 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 69 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869050 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 70 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 73 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869052 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 85 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 78 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869054 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 81 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 82 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869056 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 71 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 74 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869058 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 79 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 97 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869060 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 73 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 61 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869063 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 76 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 81 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869065 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 76 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 85 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869068 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 84 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 75 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869070 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 83 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 73 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869072 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 93 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 78 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869074 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 74 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 71 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869076 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 69 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 69 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869078 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 76 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 68 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869080 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 78 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 67 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869082 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 69 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 80 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869084 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 74 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 80 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869086 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 81 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 81 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869089 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 86 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 72 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869092 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 82 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 75 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869095 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 87 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 73 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869097 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 82 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 70 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869099 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 77 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 74 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869101 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 85 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 71 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869103 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 77 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 77 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869105 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 81 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 76 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869107 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 76 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 66 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869109 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 77 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 74 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869111 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 79 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 77 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869114 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 71 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 71 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869116 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 71 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 73 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869118 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 77 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 66 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869120 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to next message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 65 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 74 times)
Re: Connections between BoxRelativeAnchors with different GAs [message #869122 is a reply to message #868010] Wed, 02 May 2012 09:03 Go to previous messageGo to previous message
Michael Wenz is currently offline Michael WenzFriend
Messages: 1931
Registered: July 2009
Location: Walldorf, Germany
Senior Member
We just worked on some issues with the rounding and scaling in that respect.
When I try to create the same diagram using the current head version, it
looks much better. See attached screenshots. Do you have the option to check
this with our head revision?

Issues one (line bot horizontal) and two (line not centered in grid) seem to
be gone now. The third issue is still present, so would you file a bugzilla
for this?

Thanks,
Michael
  • Attachment: no_zoom.png
    (Size: 4.47KB, Downloaded 80 times)
  • Attachment: 400_zoom.png
    (Size: 33.84KB, Downloaded 61 times)
Previous Topic:Style attributes were not considered
Next Topic:RETRY: Connections between BoxRelativeAnchors with different GAs
Goto Forum:
  


Current Time: Thu Mar 28 09:42:40 GMT 2024

Powered by FUDForum. Page generated in 0.20687 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top