Commit d593afb8 by Nepxion

修改界面

parent 59ccc803
......@@ -19,6 +19,7 @@ import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.Point;
import java.awt.event.ActionEvent;
import java.awt.event.MouseEvent;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
......@@ -775,7 +776,8 @@ public class ServiceTopology extends AbstractTopology {
private static final long serialVersionUID = 1L;
@Override
public void executeClicked(int selectedRow) {
public void mousePressed(MouseEvent e) {
int selectedRow = getSelectedIndex();
if (selectedRow < 0) {
return;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment