|
@@ -1308,8 +1308,8 @@ public class GUI<E> implements CategoryListener {
|
|
UpperNodeCanvas unc = ((UpperNodeCanvas) ((JScrollPane) tabTemp.getSelectedComponent())
|
|
UpperNodeCanvas unc = ((UpperNodeCanvas) ((JScrollPane) tabTemp.getSelectedComponent())
|
|
.getViewport().getComponent(0));
|
|
.getViewport().getComponent(0));
|
|
|
|
|
|
- int x = (int) unc.getMousePosition().getX();
|
|
|
|
- int y = (int) unc.getMousePosition().getY();
|
|
|
|
|
|
+ int x = (int) unc.getMousePosition().getX()+16;
|
|
|
|
+ int y = (int) unc.getMousePosition().getY()+16;
|
|
|
|
|
|
if (x > unc.borderPos) {
|
|
if (x > unc.borderPos) {
|
|
|
|
|
|
@@ -1331,8 +1331,8 @@ public class GUI<E> implements CategoryListener {
|
|
unc.repaint();
|
|
unc.repaint();
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
- int x = (int) canvas.getMousePosition().getX();
|
|
|
|
- int y = (int) canvas.getMousePosition().getY();
|
|
|
|
|
|
+ int x = (int) canvas.getMousePosition().getX()+16;
|
|
|
|
+ int y = (int) canvas.getMousePosition().getY()+16;
|
|
|
|
|
|
AbstractCpsObject h = null;
|
|
AbstractCpsObject h = null;
|
|
if (tempCps instanceof HolonObject) {
|
|
if (tempCps instanceof HolonObject) {
|
|
@@ -1405,11 +1405,11 @@ public class GUI<E> implements CategoryListener {
|
|
if (actualObjectClicked.compareTo(cps.getObjName()) == 0) {
|
|
if (actualObjectClicked.compareTo(cps.getObjName()) == 0) {
|
|
File checkPath = new File(cps.getImage());
|
|
File checkPath = new File(cps.getImage());
|
|
if (checkPath.exists()) {
|
|
if (checkPath.exists()) {
|
|
- img = new ImageIcon(cps.getImage()).getImage().getScaledInstance(50, 50,
|
|
|
|
|
|
+ img = new ImageIcon(cps.getImage()).getImage().getScaledInstance(32, 32,
|
|
java.awt.Image.SCALE_SMOOTH);
|
|
java.awt.Image.SCALE_SMOOTH);
|
|
} else {
|
|
} else {
|
|
img = new ImageIcon(this.getClass().getResource(cps.getImage())).getImage()
|
|
img = new ImageIcon(this.getClass().getResource(cps.getImage())).getImage()
|
|
- .getScaledInstance(50, 50, java.awt.Image.SCALE_SMOOTH);
|
|
|
|
|
|
+ .getScaledInstance(32, 32, java.awt.Image.SCALE_SMOOTH);
|
|
}
|
|
}
|
|
tempCps = cps;
|
|
tempCps = cps;
|
|
dragging = true;
|
|
dragging = true;
|