Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew M. Finkbeiner2015-06-04 23:03:00 +0000
committerAndrew M. Finkbeiner2015-06-04 23:03:00 +0000
commit1fdf95628b9a3d8e03bf17078ca8f47caf85f02c (patch)
treeb37f611a51cf5c6a7005aa59ae7b3667f49c86bf
parent382b2b4805eb86ae71459f7b76f478cbf582bd12 (diff)
parent6f9a88321b01cda762417484b0b1fe52e7779c64 (diff)
downloadorg.eclipse.ote-1fdf95628b9a3d8e03bf17078ca8f47caf85f02c.tar.gz
org.eclipse.ote-1fdf95628b9a3d8e03bf17078ca8f47caf85f02c.tar.xz
org.eclipse.ote-1fdf95628b9a3d8e03bf17078ca8f47caf85f02c.zip
Merge branch 'amf/swt_fix' into sprint7506_09_2015sprint75
-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