File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ private void createLayout() {
173
173
gbc .fill = GridBagConstraints .BOTH ;
174
174
mainPanel .setLayout (gbl );
175
175
176
- sentMsgs = new JRadioButton ("Msgs Sent" , true );
176
+ sentMsgs = new JRadioButton ("Msgs Sent" );
177
177
sentMsgs .addActionListener (this );
178
178
sentMsgs .setToolTipText ("Number of messages sent anywhere, including to same PE" );
179
179
sentBytes = new JRadioButton ("Bytes Sent" );
@@ -191,7 +191,7 @@ private void createLayout() {
191
191
receivedExternalBytes = new JRadioButton ("External Bytes Recv" );
192
192
receivedExternalBytes .addActionListener (this );
193
193
receivedExternalBytes .setToolTipText ("Number of bytes received from a different PE" );
194
- receivedExternalNodeMsgs = new JRadioButton ("External Node Msgs Recv" );
194
+ receivedExternalNodeMsgs = new JRadioButton ("External Node Msgs Recv" , true );
195
195
receivedExternalNodeMsgs .addActionListener (this );
196
196
receivedExternalNodeMsgs .setToolTipText ("Number of messages received from a different process" );
197
197
receivedExternalNodeBytes = new JRadioButton ("External Node Bytes Recv" );
Original file line number Diff line number Diff line change @@ -437,8 +437,8 @@ public Object doInBackground() {
437
437
public void done () {
438
438
milliseconds .setSelected (true );
439
439
handleBtn (milliseconds );
440
- sentMsgs .setSelected (true );
441
- handleBtn (sentMsgs );
440
+ receivedExternalNodeMsgs .setSelected (true );
441
+ handleBtn (receivedExternalNodeMsgs );
442
442
thisWindow .setVisible (true );
443
443
thisWindow .repaint ();
444
444
}
You can’t perform that action at this time.
0 commit comments