From: gmungoc Date: Fri, 6 Jul 2018 09:55:46 +0000 (+0100) Subject: JAL-3054 small y-overlap of tooltip and cell leads the eye better X-Git-Tag: Release_2_11_4_0~45^2~18^2~571 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=51c68cf0145a7d72e4952bf0d2284318e229d58f;p=jalview.git JAL-3054 small y-overlap of tooltip and cell leads the eye better --- diff --git a/src/jalview/gui/FeatureSettings.java b/src/jalview/gui/FeatureSettings.java index 32d3603..062eda1 100644 --- a/src/jalview/gui/FeatureSettings.java +++ b/src/jalview/gui/FeatureSettings.java @@ -237,7 +237,7 @@ public class FeatureSettings extends JPanel } /** - * Position the tooltip at the bottom edge of, and half way across, the + * Position the tooltip near the bottom edge of, and half way across, the * current cell */ @Override @@ -247,7 +247,7 @@ public class FeatureSettings extends JPanel int column = table.columnAtPoint(point); int row = table.rowAtPoint(point); Rectangle r = getCellRect(row, column, false); - Point loc = new Point(r.x + r.width / 2, r.y + r.height); + Point loc = new Point(r.x + r.width / 2, r.y + r.height - 3); return loc; } };