Closed ltorok closed 4 years ago
Hi. Is this bug?
I have this code: Tile percentageTile = TileBuilder.create() .skinType(SkinType.PERCENTAGE) .prefSize(TILE_WIDTH, TILE_HEIGHT) .title("Title") .unit(Helper.PERCENTAGE) .description("Description") .maxValue(100) .decimals(0) .titleAlignment(TextAlignment.CENTER) .descriptionAlignment(Pos.CENTER) .maxValueVisible(false) .valueVisible(false) .unit("") .build();
Tile percentageTile = TileBuilder.create() .skinType(SkinType.PERCENTAGE) .prefSize(TILE_WIDTH, TILE_HEIGHT) .title("Title") .unit(Helper.PERCENTAGE) .description("Description") .maxValue(100) .decimals(0) .titleAlignment(TextAlignment.CENTER) .descriptionAlignment(Pos.CENTER) .maxValueVisible(false) .valueVisible(false) .unit("") .build();
Note that maxValueVisible is set to false, but I get this:
maxValueVisible
false
Fixed with commit aaefb790752a64b05a1037333acac979d7b05893
Thanks. It is ok now.
Hi. Is this bug?
I have this code:
Tile percentageTile = TileBuilder.create() .skinType(SkinType.PERCENTAGE) .prefSize(TILE_WIDTH, TILE_HEIGHT) .title("Title") .unit(Helper.PERCENTAGE) .description("Description") .maxValue(100) .decimals(0) .titleAlignment(TextAlignment.CENTER) .descriptionAlignment(Pos.CENTER) .maxValueVisible(false) .valueVisible(false) .unit("") .build();
Note that
maxValueVisible
is set tofalse
, but I get this: