PeerMonitor: Increase initial size of window.

This commit is contained in:
Andreas Schildbach 2021-04-22 16:02:19 +02:00
parent 39bb7faafb
commit 04a71b09af

View File

@ -130,7 +130,7 @@ public class PeerMonitor {
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.