From 8480ddb82e9c19c90714c7e241b9926091f212c4 Mon Sep 17 00:00:00 2001 From: Ben Fry Date: Sat, 11 Feb 2017 18:22:44 -0500 Subject: [PATCH] fix the table view sizing --- app/src/processing/app/contrib/ListPanel.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/processing/app/contrib/ListPanel.java b/app/src/processing/app/contrib/ListPanel.java index ef4502019..d9b36ce12 100644 --- a/app/src/processing/app/contrib/ListPanel.java +++ b/app/src/processing/app/contrib/ListPanel.java @@ -107,8 +107,8 @@ implements Scrollable, ContributionListing.ChangeListener { table.setFillsViewportHeight(true); table.setDefaultRenderer(Contribution.class, new ContribStatusRenderer()); table.setFont(ManagerFrame.NORMAL_PLAIN); - table.setRowHeight(28); - table.setRowMargin(6); + table.setRowHeight(Toolkit.zoom(28)); + table.setRowMargin(Toolkit.zoom(6)); table.getColumnModel().setColumnMargin(0); table.getColumnModel().getColumn(0).setMaxWidth(ManagerFrame.STATUS_WIDTH); table.getColumnModel().getColumn(2).setMinWidth(ManagerFrame.AUTHOR_WIDTH);