Selects the text at the specified position. @param point mouse position @param start states if selection has just been started
(final Point point, final boolean start)
| 499 | * @param start states if selection has just been started |
| 500 | */ |
| 501 | private void select(final Point point, final boolean start) { |
| 502 | editor.select(rend.jump(point).pos(), start); |
| 503 | rend.repaint(); |
| 504 | } |
| 505 | |
| 506 | // KEY INTERACTIONS =========================================================================== |
| 507 |
no test coverage detected