提交 7ca1921f 编写于 作者: G gsm

6612541: api/javax_swing/text/LabelView/index.html#getXXX[LabelView0004] fails since JDK 7 b20

Reviewed-by: peterz
上级 6da7c87d
...@@ -719,8 +719,9 @@ public class GlyphView extends View implements TabableView, Cloneable { ...@@ -719,8 +719,9 @@ public class GlyphView extends View implements TabableView, Cloneable {
checkPainter(); checkPainter();
int p0 = getStartOffset(); int p0 = getStartOffset();
int p1 = painter.getBoundedPosition(this, p0, pos, len); int p1 = painter.getBoundedPosition(this, p0, pos, len);
return ((p1 > p0) && (getBreakSpot(p0, p1) != BreakIterator.DONE)) ? return p1 == p0 ? View.BadBreakWeight :
View.ExcellentBreakWeight : View.BadBreakWeight; getBreakSpot(p0, p1) != BreakIterator.DONE ?
View.ExcellentBreakWeight : View.GoodBreakWeight;
} }
return super.getBreakWeight(axis, pos, len); return super.getBreakWeight(axis, pos, len);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册