Skip to content
Snippets Groups Projects
Commit 7e6e45dc authored by tcarver's avatar tcarver
Browse files

fix for tooltip text

parent 981c33b7
Branches
Tags
No related merge requests found
...@@ -473,6 +473,8 @@ import net.sf.samtools.SAMRecord; ...@@ -473,6 +473,8 @@ import net.sf.samtools.SAMRecord;
*/ */
public String getToolTipText(int ypos) public String getToolTipText(int ypos)
{ {
if(heatPlots == null)
return null;
for(HeatMapLn h: heatPlots) for(HeatMapLn h: heatPlots)
{ {
if(ypos > h.yTop && ypos < h.yBtm) if(ypos > h.yTop && ypos < h.yBtm)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment