outputPanel.put(outputPanel.gridWidth() - 1, outputPanel.gridHeight() - 1, downChar, SColor.DARK_BLUE_DYE);
for (int y = 1; y < outputPanel.gridHeight() - 1; y++) {//fill in vertical line between scroll arrowheads
outputPanel.put(outputPanel.gridWidth() - 1, y, SColor.SILVER);
}
updateOutput();
outputPanel.addMouseListener(new SGMouseListener(outputPanel.cellWidth(), outputPanel.cellHeight(), new OutputMouseListener()));
frame.add(outputPanel, BorderLayout.SOUTH);
keyListener = initKeyListener();
frame.addKeyListener(keyListener);