Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 227806
Collapse All | Expand All

(-)plugins/org.eclipse.dd.debug.memory.renderings.traditional/src/org/eclipse/dd/debug/memory/renderings/traditional/AbstractPane.java (-10 / +1 lines)
Lines 549-564 Link Here
549
549
550
    protected void advanceCursor()
550
    protected void advanceCursor()
551
    {
551
    {
552
        fSubCellCaretPosition++;
552
    	handleRightArrowKey();
553
        if(fSubCellCaretPosition >= getCellCharacterCount())
554
        {
555
            fSubCellCaretPosition = 0;
556
            fCaretAddress = fCaretAddress.add(BigInteger
557
                .valueOf(getNumberOfBytesRepresentedByColumn() / fRendering.getAddressableSize()));
558
559
        }
560
        updateCaret();
561
        ensureCaretWithinViewport();
562
    }
553
    }
563
554
564
    protected void positionCaret(int x, int y)
555
    protected void positionCaret(int x, int y)

Return to bug 227806