Skip to content

Commit

Permalink
Reduced height of StackVisualizer' window
Browse files Browse the repository at this point in the history
  • Loading branch information
gzachos committed Oct 24, 2018
1 parent bf08b3f commit 4b348d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mars/tools/StackVisualizer.java
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ protected JComponent buildMainDisplayArea() {
c.gridy = 0;
c.weighty = 1.0;
panel = new JPanel(new GridBagLayout());
panel.setPreferredSize(new Dimension(600, 650));
panel.setPreferredSize(new Dimension(600, 600));
for (String s : colNamesWhenDataPerByte)
tableModel.addColumn(s);
table = new JTable(tableModel);
Expand Down

0 comments on commit 4b348d8

Please sign in to comment.