Now modifies the value label's alignment correctly.

This commit is contained in:
Kentaro Fukuchi 2021-08-26 03:59:45 +09:00
parent d3dad67633
commit 45944d1215
1 changed files with 1 additions and 1 deletions

View File

@ -1982,7 +1982,7 @@ public abstract class Controller< T > implements ControllerInterface< T > , CDra
public T align( int theCaptionX , int theCaptionY , int theValueX , int theValueY ) {
getCaptionLabel( ).align( theCaptionX , theCaptionY );
getCaptionLabel( ).align( theValueX , theValueY );
getValueLabel( ).align( theValueX , theValueY );
return me;
}