1
0
mirror of https://github.com/sethm/symon.git synced 2024-06-07 19:29:27 +00:00

Force no grid on memory window

This commit is contained in:
Seth Morabito 2013-03-30 22:27:33 -07:00
parent 6a50476bfe
commit a5af522c5c

View File

@ -124,6 +124,7 @@ public class MemoryWindow extends JFrame implements ActionListener {
memoryTable.getTableHeader().setReorderingAllowed(false);
memoryTable.getTableHeader().setResizingAllowed(false);
memoryTable.getTableHeader().setVisible(false);
memoryTable.setShowGrid(false);
memoryTable.getColumnModel().getColumn(0).setMaxWidth(ADDR_COL_WIDTH);