Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKnut Radloff2002-02-01 19:53:32 +0000
committerKnut Radloff2002-02-01 19:53:32 +0000
commit794bcaa6a181ec00bb5a00a3dc2039b598f2c99c (patch)
tree65e2772585a458c12d18ab998f536db911254ce7 /bundles
parent5355818ed6c80a44bb9a2df251a105a7af080d33 (diff)
downloadeclipse.platform.swt-794bcaa6a181ec00bb5a00a3dc2039b598f2c99c.tar.gz
eclipse.platform.swt-794bcaa6a181ec00bb5a00a3dc2039b598f2c99c.tar.xz
eclipse.platform.swt-794bcaa6a181ec00bb5a00a3dc2039b598f2c99c.zip
8273
Diffstat (limited to 'bundles')
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
index e0e94e5954..bec50f626f 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
@@ -5183,6 +5183,10 @@ void handleTextChanged(TextChangedEvent event) {
// Fixes 1GEYJM0
claimBottomFreeSpace();
}
+ if (lastTextChangeReplaceCharCount > 0) {
+ // fixes bug 8273
+ claimRightFreeSpace();
+ }
}
/**
* Updates the screen to reflect a pending content change.

Back to the top