Author: vrubezhny
Date: 2008-05-14 08:49:36 -0400 (Wed, 14 May 2008)
New Revision: 8074
Modified:
trunk/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:
trunk/common/plugins/org.jboss.tools.common.text.xml/src/org/jboss/tools/common/text/xml/ui/FreeCaretStyledText.java
===================================================================
---
trunk/common/plugins/org.jboss.tools.common.text.xml/src/org/jboss/tools/common/text/xml/ui/FreeCaretStyledText.java 2008-05-14
10:34:00 UTC (rev 8073)
+++
trunk/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)
@@ -76,7 +76,11 @@
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);
+ }
}
}