X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FFeatureSettings.java;h=062eda1cef61758ca9bd304823b5d5dd7052739a;hb=51c68cf0145a7d72e4952bf0d2284318e229d58f;hp=32d3603beec585f63ecbf124a802cabf3679e6d6;hpb=6e1d9fc2f3271f9b2ab702f057319a3fc14cf691;p=jalview.git 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; } };