private static void drawFocus(Graphics g, ChoiceState s) {
if (s.isFocused()) {
Rectangle r = new Rectangle(new Point(), s.getSize());
r.width -= DefaultScrollbar.BUTTON_SIZE + 2;
r.grow(- 2 * BORDER_SIZE, -2 * BORDER_SIZE);
drawFocusRect(g, r.x, r.y, r.width, r.height);
r.grow(-1, -1);
g.setColor(SystemColor.textHighlight);
g.fillRect(r.x, r.y, r.width, r.height);
}