Fire a change event to update the UI when FinSet::setTabOffsetMethod() is called.

This commit is contained in:
JoePfeiffer 2020-12-07 14:25:06 -07:00 committed by Billy Olsen
parent f8430c6504
commit f5265ffcb5

View File

@ -317,6 +317,7 @@ public abstract class FinSet extends ExternalComponent implements AxialPositiona
public void setTabOffsetMethod(final AxialMethod newPositionMethod) { public void setTabOffsetMethod(final AxialMethod newPositionMethod) {
this.tabOffsetMethod = newPositionMethod; this.tabOffsetMethod = newPositionMethod;
this.tabOffset = tabOffsetMethod.getAsOffset( tabPosition, tabLength, length); this.tabOffset = tabOffsetMethod.getAsOffset( tabPosition, tabLength, length);
fireComponentChangeEvent(ComponentChangeEvent.NONFUNCTIONAL_CHANGE);
} }
/** /**