This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 207286
Collapse All | Expand All

(-)a/editor.lib2/src/org/netbeans/modules/editor/lib2/view/HighlightsViewFactory.java (-1 / +1 lines)
Lines 226-232 Link Here
226
            return new NewlineView(attrs);
226
            return new NewlineView(attrs);
227
        } else { // Regular view with possible highlight(s) or tab view
227
        } else { // Regular view with possible highlight(s) or tab view
228
            if (charType == TAB_CHAR_TYPE) {
228
            if (charType == TAB_CHAR_TYPE) {
229
                int tabsEndOffset = nextTabOrRTLOffset; 
229
                int tabsEndOffset = startOffset + 1; 
230
                AttributeSet attrs;
230
                AttributeSet attrs;
231
                if (limitOffset > tabsEndOffset) {
231
                if (limitOffset > tabsEndOffset) {
232
                    limitOffset = tabsEndOffset;
232
                    limitOffset = tabsEndOffset;

Return to bug 207286