Reduced boxLabel::minWidth to be less than width of box with padding.

This commit is contained in:
23rd 2022-08-05 08:10:14 +03:00 committed by John Preston
parent f5cdf4bdb8
commit b75b69d59d

View file

@ -137,7 +137,8 @@ defaultBox: Box {
layerBox: Box(defaultBox) {
}
boxLabel: FlatLabel(defaultFlatLabel) {
minWidth: 274px;
// Keep minWidth <= boxWidth - boxPadding.left - boxPadding.right.
minWidth: 256px;
align: align(topleft);
style: boxLabelStyle;
}