lower draggablehudcomponent anchor clamping threshhold

This commit is contained in:
noil755 2019-12-01 22:38:43 -05:00
parent d004aeaf46
commit dcc24b86e6
1 changed files with 3 additions and 1 deletions

View File

@ -25,6 +25,8 @@ public class DraggableHudComponent extends HudComponent {
private DraggableHudComponent glued;
private GlueSide glueSide;
private static final double ANCHOR_THRESHOLD = 80;
public DraggableHudComponent(String name) {
this.setName(name);
this.setVisible(false);
@ -194,7 +196,7 @@ public class DraggableHudComponent extends HudComponent {
private AnchorPoint findClosest(int x, int y) {
AnchorPoint ret = null;
double max = 100;
double max = ANCHOR_THRESHOLD;
for (AnchorPoint point : Seppuku.INSTANCE.getHudManager().getAnchorPoints()) {
final double deltaX = x - point.getX();
final double deltaY = y - point.getY();