Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Williams2018-05-28 18:22:41 +0000
committerEric Williams2018-05-29 17:39:18 +0000
commit2bd7cc57d6f8db85984adca7abc84236618f0b2d (patch)
treeb0110e1269fd34e972dce6919e4ca94c530edc06 /bundles/org.eclipse.swt/build.xml
parent86c15e9a4fc470befff6e93a09521c3e3a6c7a65 (diff)
downloadeclipse.platform.swt-2bd7cc57d6f8db85984adca7abc84236618f0b2d.tar.gz
eclipse.platform.swt-2bd7cc57d6f8db85984adca7abc84236618f0b2d.tar.xz
eclipse.platform.swt-2bd7cc57d6f8db85984adca7abc84236618f0b2d.zip
Bug 258196: [GTK] Virtual Tree does not resize correctly horizontally
Using the patch from bugzilla, add updated flags to Tree and TreeItem which are triggered when changes are made that would affect the layout of the Tree. These changes will trigger the proper scrolling width to be set. Tested on GTK2 and GTK3, no ill effects seen. No AllNonBrowser JUnit tests fail, and the snippet from bug 490203 doesn't show any reduction in performance either. Bumped versions for first 4.9 commit. Change-Id: If8d435248db5bc4ba5448f803bafd4eef1165167 Signed-off-by: Eric Williams <ericwill@redhat.com>
Diffstat (limited to 'bundles/org.eclipse.swt/build.xml')
-rw-r--r--bundles/org.eclipse.swt/build.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/build.xml b/bundles/org.eclipse.swt/build.xml
index 821d8b91be..8c25eaa292 100644
--- a/bundles/org.eclipse.swt/build.xml
+++ b/bundles/org.eclipse.swt/build.xml
@@ -15,7 +15,7 @@
<target name="init">
<property name="plugin" value="org.eclipse.swt" />
- <property name="version.suffix" value="3.106.100" />
+ <property name="version.suffix" value="3.107.100" />
<property name="full.name" value="${plugin}_${version.suffix}" />
<property name="temp.folder" value="${basedir}/temp.folder" />
<property name="plugin.destination" value="${basedir}" />

Back to the top