Closed GoogleCodeExporter closed 9 years ago
Fix under investigation and test. Will be part of next release, in a week
time.
Original comment by ayman.al...@gmail.com
on 31 Jul 2008 at 1:39
Original comment by ayman.al...@gmail.com
on 31 Jul 2008 at 1:41
Did not have time to work on this. Still no PC to work on :(
Fix should be fairly easy. Just override the replace method of the
SyntaxDocument,
call super method, then parse.
I'd appreciate if you can work on this one too.
When this is also fixed, we can release the 0.9.0
Original comment by ayman.al...@gmail.com
on 8 Aug 2008 at 9:09
It's been fixed in my local copy :)
@Override
public void replace(int offset, int length, String text, AttributeSet attrs)
throws
BadLocationException {
super.replace(offset, length, text, attrs);
parse();
}
Original comment by javlo...@gmail.com
on 8 Aug 2008 at 9:24
Rev.15 has this change. @javlopez can you verify this?
Original comment by subwiz
on 8 Aug 2008 at 5:44
yup it's fixed
Original comment by javlo...@gmail.com
on 9 Aug 2008 at 3:57
Original issue reported on code.google.com by
javlo...@gmail.com
on 31 Jul 2008 at 11:00