Author: linus Date: 2011-04-02 02:18:46-0700 New Revision: 19174 Modified: branches/BRANCH_0_32_x/src/argouml-core-diagrams-sequence2/src/org/argouml/sequence2/diagram/FigLifeLine.java
Log: Fixed a priority problem that is not possible to merge separately. Suggested by Bob Tarling. Modified: branches/BRANCH_0_32_x/src/argouml-core-diagrams-sequence2/src/org/argouml/sequence2/diagram/FigLifeLine.java Url: http://argouml.tigris.org/source/browse/argouml/branches/BRANCH_0_32_x/src/argouml-core-diagrams-sequence2/src/org/argouml/sequence2/diagram/FigLifeLine.java?view=diff&pathrev=19174&r1=19173&r2=19174 ============================================================================== --- branches/BRANCH_0_32_x/src/argouml-core-diagrams-sequence2/src/org/argouml/sequence2/diagram/FigLifeLine.java (original) +++ branches/BRANCH_0_32_x/src/argouml-core-diagrams-sequence2/src/org/argouml/sequence2/diagram/FigLifeLine.java 2011-04-02 02:18:46-0700 @@ -329,7 +329,7 @@ } @Override - protected void setBoundsImpl(int x, int y, int w, int h) { + protected synchronized void setBoundsImpl(int x, int y, int w, int h) { final Rectangle oldBounds = getBounds(); rectFig.setBounds(x, y, w, h); ------------------------------------------------------ http://argouml.tigris.org/ds/viewMessage.do?dsForumId=5905&dsMessageId=2716271 To unsubscribe from this discussion, e-mail: [[email protected]].
