mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-06 13:25:50 +00:00
spelling: registration
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
committed by
Jindra Petřík
parent
f5c0b93b12
commit
64dc1d79ef
@@ -179,8 +179,8 @@ public class TransformPanel extends JPanel {
|
||||
|
||||
imagePanel.addBoundsChangeListener(new BoundsChangeListener() {
|
||||
@Override
|
||||
public void boundsChanged(Rectangle2D newBounds, Point2D registraionPoint, RegistrationPointPosition registrationPointPosition) {
|
||||
update(newBounds, registraionPoint, registrationPointPosition);
|
||||
public void boundsChanged(Rectangle2D newBounds, Point2D registrationPoint, RegistrationPointPosition registrationPointPosition) {
|
||||
update(newBounds, registrationPoint, registrationPointPosition);
|
||||
}
|
||||
});
|
||||
//setBorder(BorderFactory.createBevelBorder(BevelBorder.LOWERED));
|
||||
@@ -470,9 +470,9 @@ public class TransformPanel extends JPanel {
|
||||
loadOpenedCards();
|
||||
}
|
||||
|
||||
private void update(Rectangle2D bounds, Point2D registraionPoint, RegistrationPointPosition registrationPointPosition) {
|
||||
private void update(Rectangle2D bounds, Point2D registrationPoint, RegistrationPointPosition registrationPointPosition) {
|
||||
this.bounds = bounds;
|
||||
this.registrationPoint = registraionPoint;
|
||||
this.registrationPoint = registrationPoint;
|
||||
this.registrationPointPanel.setSelectedPosition(registrationPointPosition);
|
||||
if (!moveRelativeCheckBox.isSelected()) {
|
||||
moveHorizontalTextField.setText(formatDouble(convertUnit(bounds.getX(), Unit.TWIP, (Unit) moveUnitComboBox.getSelectedItem())));
|
||||
|
||||
Reference in New Issue
Block a user