|
|
@ -306,7 +306,7 @@ public class StateModel { |
|
|
|
if (paramComponent != null) { |
|
|
|
if (paramComponent != null) { |
|
|
|
yOffset = paramComponent.getHeight(); |
|
|
|
yOffset = paramComponent.getHeight(); |
|
|
|
} |
|
|
|
} |
|
|
|
bounds.y = bounds.y - yOffset; |
|
|
|
bounds.y = Math.max(bounds.y - yOffset, 0); |
|
|
|
|
|
|
|
|
|
|
|
if ((x != currentX) || (y != currentY)) { |
|
|
|
if ((x != currentX) || (y != currentY)) { |
|
|
|
ArrayList<XCreator> creators = getHotspotCreators(bounds, designer.getRootComponent()); |
|
|
|
ArrayList<XCreator> creators = getHotspotCreators(bounds, designer.getRootComponent()); |
|
|
|