g.drawImage(lcimg, 0, 0, this);
}
- drawCursor(g, ranges.getStartRes(), ranges.getEndRes(),
- ranges.getStartSeq(), ranges.getEndSeq());
+
+ if (av.cursorMode)
+ {
+ drawCursor(g, ranges.getStartRes(), ranges.getEndRes(),
+ ranges.getStartSeq(), ranges.getEndSeq());
+ }
}
/**
.findIndexWithoutHiddenSeqs(cursorY);
// don't do work unless we have to
- if (av.cursorMode && cursor_ypos >= startSeq && cursor_ypos <= endSeq)
+ if (cursor_ypos >= startSeq && cursor_ypos <= endSeq)
{
int yoffset = 0;
int xoffset = 0;
seqRdr.drawCursor(g, s,
xoffset + (cursor_xpos - startx) * av.getCharWidth(),
yoffset + (cursor_ypos - startSeq) * av.getCharHeight());
- g.dispose();
}
}
}