(final Object down)
| 647 | /** Computes the height of the text and updates the scroll bar. */ |
| 648 | private final GUICode computeHeight = new GUICode() { |
| 649 | @Override |
| 650 | public void execute(final Object down) { |
| 651 | rend.computeHeight(); |
| 652 | updateScrollpos.execute((Boolean) down ? 2 : 0); |
| 653 | } |
| 654 | }; |
| 655 | |
| 656 | /** Updates the position of the scroll bar. */ |
nothing calls this directly
no test coverage detected