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

(-)Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java (-2 / +2 lines)
Lines 6220-6226 Link Here
6220
		claimRightFreeSpace();
6220
		claimRightFreeSpace();
6221
	}
6221
	}
6222
	
6222
	
6223
	sendAccessibleTextChanged(lastTextChangeStart, lastTextChangeNewCharCount, lastTextChangeReplaceCharCount);
6223
	sendAccessibleTextChanged(lastTextChangeStart, lastTextChangeNewCharCount, 0);
6224
	lastCharCount += lastTextChangeNewCharCount;
6224
	lastCharCount += lastTextChangeNewCharCount;
6225
	lastCharCount -= lastTextChangeReplaceCharCount;
6225
	lastCharCount -= lastTextChangeReplaceCharCount;
6226
	setAlignment();
6226
	setAlignment();
Lines 6258-6264 Link Here
6258
	} else {
6258
	} else {
6259
		scrollText(srcY, destY);
6259
		scrollText(srcY, destY);
6260
	}
6260
	}
6261
6261
	sendAccessibleTextChanged(lastTextChangeStart, 0, lastTextChangeReplaceCharCount);
6262
	renderer.textChanging(event);
6262
	renderer.textChanging(event);
6263
	
6263
	
6264
	// Update the caret offset if it is greater than the length of the content.
6264
	// Update the caret offset if it is greater than the length of the content.

Return to bug 308057