Community
Participate
Working Groups
source annotations are no longer painting in the source editors again with this newest version of eclipse. i'm guessing the band-aid that was added in bug 206913 no longer works.
Created attachment 84691 [details] org.eclipse.wst.sse.ui.patch Actually, the band-aid still works. But apparently a new drawing strategy was created to handle drawing problem underlines. So all we need to do (for now) is just make the same fix we made in bug 206913 and short circuit the viewer decoration support to use the old annotation painter instead of the new problem underliner. It's just 2 lines of code: // dont use new problem underline painter painter.addTextStyleStrategy(AnnotationPreference.STYLE_PROBLEM_UNDERLINE, null); // use old one painter.addDrawingStrategy(AnnotationPreference.STYLE_PROBLEM_UNDERLINE, new AnnotationPainter.SquigglesStrategy());
fix released to this week's ibuild
Verified with I20071207063230
closing