Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Jury2015-06-17 21:06:30 +0000
committerAndy Jury2015-06-17 21:06:30 +0000
commitcf995f2723835b73847300e020e0cc08a0019ec6 (patch)
treeb37f611a51cf5c6a7005aa59ae7b3667f49c86bf
parent382b2b4805eb86ae71459f7b76f478cbf582bd12 (diff)
parent1fdf95628b9a3d8e03bf17078ca8f47caf85f02c (diff)
downloadorg.eclipse.ote-cf995f2723835b73847300e020e0cc08a0019ec6.tar.gz
org.eclipse.ote-cf995f2723835b73847300e020e0cc08a0019ec6.tar.xz
org.eclipse.ote-cf995f2723835b73847300e020e0cc08a0019ec6.zip
Merge branch 'sprint75'OTE_MINIBUILD_75
-rw-r--r--org.eclipse.ote.ui/src/org/eclipse/ote/ui/util/SWTUtil.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.ote.ui/src/org/eclipse/ote/ui/util/SWTUtil.java b/org.eclipse.ote.ui/src/org/eclipse/ote/ui/util/SWTUtil.java
index 14398d2c6..f27cf11f5 100644
--- a/org.eclipse.ote.ui/src/org/eclipse/ote/ui/util/SWTUtil.java
+++ b/org.eclipse.ote.ui/src/org/eclipse/ote/ui/util/SWTUtil.java
@@ -20,7 +20,7 @@ public class SWTUtil {
try {
Method setItemHeightMethod = table.getClass().getDeclaredMethod("setItemHeight", int.class);
setItemHeightMethod.setAccessible(true);
- setItemHeightMethod.invoke(table, table.getItemHeight()+5);
+ setItemHeightMethod.invoke(table, table.getItemHeight()+sizeIncrease);
}
catch (Exception e) {
OseeLog.log(SWTUtil.class, Level.WARNING, e);

Back to the top