Skip to content

Commit

Permalink
PeerMonitor: Increase initial size of window.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Schildbach authored and ripcurlx committed Aug 17, 2021
1 parent 2db21d9 commit 49e7337
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public void stateChanged(ChangeEvent changeEvent) {
JScrollPane scrollPane = new JScrollPane(peerTable);
window.getContentPane().add(scrollPane, BorderLayout.CENTER);
window.pack();
window.setSize(720, 480);
window.setSize(1280, 768);
window.setVisible(true);

// Refresh the UI every half second to get the latest ping times. The event handler runs in the UI thread.
Expand Down

0 comments on commit 49e7337

Please sign in to comment.