diff options
| author | Dimitar Iordanov | 2012-05-09 19:07:31 +0000 |
|---|---|---|
| committer | Dani Megert | 2012-05-10 08:34:14 +0000 |
| commit | 5620b2cf95396e349bb149c6b29a45c947b476a5 (patch) | |
| tree | 336118808c9f53148b9d7a3d377d54869532288c | |
| parent | 55392f49355c6eeb18824ea56b58c44446139e3c (diff) | |
| download | eclipse.platform.ui-5620b2cf95396e349bb149c6b29a45c947b476a5.tar.gz eclipse.platform.ui-5620b2cf95396e349bb149c6b29a45c947b476a5.tar.xz eclipse.platform.ui-5620b2cf95396e349bb149c6b29a45c947b476a5.zip | |
Bug 377854 - [About] About Features Dialog's Info Area does not scroll
when message is long
| -rw-r--r-- | bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutFeaturesPage.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutFeaturesPage.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutFeaturesPage.java index 138be88a87e..2f7951ca609 100644 --- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutFeaturesPage.java +++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutFeaturesPage.java @@ -227,7 +227,8 @@ public class AboutFeaturesPage extends ProductInfoPage { imageLabel.setFont(font); // text on the right - text = new StyledText(infoArea, SWT.MULTI | SWT.WRAP | SWT.READ_ONLY); + text = new StyledText(infoArea, SWT.MULTI | SWT.WRAP | SWT.READ_ONLY | SWT.V_SCROLL); + text.setAlwaysShowScrollBars(false); // Don't set caret to 'null' as this causes https://bugs.eclipse.org/293263. // text.setCaret(null); |
