Author: vrubezhny
Date: 2008-05-14 08:51:38 -0400 (Wed, 14 May 2008)
New Revision: 8075
Modified:
branches/jbosstools-2.1.x/common/plugins/org.jboss.tools.common.text.xml/src/org/jboss/tools/common/text/xml/ui/FreeCaretStyledText.java
Log:
http://jira.jboss.com/jira/browse/JBIDE-2192 Unhandled event loop exception when try to
make OpenOn on <ui:include src="#{}"/>
Issue is fixed
Modified:
branches/jbosstools-2.1.x/common/plugins/org.jboss.tools.common.text.xml/src/org/jboss/tools/common/text/xml/ui/FreeCaretStyledText.java
===================================================================
---
branches/jbosstools-2.1.x/common/plugins/org.jboss.tools.common.text.xml/src/org/jboss/tools/common/text/xml/ui/FreeCaretStyledText.java 2008-05-14
12:49:36 UTC (rev 8074)
+++
branches/jbosstools-2.1.x/common/plugins/org.jboss.tools.common.text.xml/src/org/jboss/tools/common/text/xml/ui/FreeCaretStyledText.java 2008-05-14
12:51:38 UTC (rev 8075)
@@ -76,7 +76,10 @@
start = getCharCount();
if (start + length > getCharCount())
length = getCharCount() - start;
- super.redrawRange(start, length, clearBackground);
+ //FIX for JBIDE-2192
+ if (length > 0) {
+ super.redrawRange(start, length, clearBackground);
+ }
}
}