удаление отладочной печати сравнения и не только
This commit is contained in:
@@ -34,9 +34,7 @@ public class FunctionsGraphUI extends mxGraph {
|
||||
public final static Timer ffTimer = new Timer(1000, new ActionListener() {
|
||||
@Override
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
System.out.println("Time to Redraw Functions Graph");
|
||||
Pass_2021.passes.get(PassCode_2021.SPF_GetGraphFunctionPositions).Do();
|
||||
System.out.println("DONE");
|
||||
}
|
||||
});
|
||||
//---
|
||||
@@ -221,21 +219,12 @@ public class FunctionsGraphUI extends mxGraph {
|
||||
}
|
||||
}
|
||||
}
|
||||
/*
|
||||
System.out.println("------");
|
||||
for (String key: mxEventObject.getProperties().keySet()){
|
||||
System.out.println(key+" : "+ mxEventObject.getProperties().get(key));
|
||||
}
|
||||
System.out.println("------");
|
||||
|
||||
*/
|
||||
});
|
||||
graphComponent.getGraphControl().setComponentPopupMenu(new FunctionsGraphMenu());
|
||||
|
||||
//обработка клика мышом.
|
||||
graphComponent.getGraphControl().addMouseListener(new MouseAdapter() {
|
||||
public void mouseReleased(MouseEvent e) {
|
||||
System.out.println("Released");
|
||||
Object cell = graphComponent.getCellAt(e.getX(), e.getY());
|
||||
if (cell != null) {
|
||||
mxCell mx_cell = (mxCell) cell;
|
||||
|
||||
Reference in New Issue
Block a user