mirror of https://github.com/procxx/kepka.git
Fix auto word wrap in intro description.
This commit is contained in:
parent
f8fc554f78
commit
2fc5b69465
|
@ -59,6 +59,7 @@ introTitle: FlatLabel(defaultFlatLabel) {
|
||||||
}
|
}
|
||||||
introTitleTop: 1px;
|
introTitleTop: 1px;
|
||||||
introDescription: FlatLabel(defaultFlatLabel) {
|
introDescription: FlatLabel(defaultFlatLabel) {
|
||||||
|
minWidth: 300px;
|
||||||
textFg: introDescriptionFg;
|
textFg: introDescriptionFg;
|
||||||
style: TextStyle(defaultTextStyle) {
|
style: TextStyle(defaultTextStyle) {
|
||||||
lineHeight: 20px;
|
lineHeight: 20px;
|
||||||
|
|
|
@ -658,6 +658,7 @@ void Widget::Step::updateLabelsPosition() {
|
||||||
_description->moveToLeft((width() - _description->width()) / 2, contentTop() + st::introCoverDescriptionTop);
|
_description->moveToLeft((width() - _description->width()) / 2, contentTop() + st::introCoverDescriptionTop);
|
||||||
} else {
|
} else {
|
||||||
_title->moveToLeft(contentLeft() + st::buttonRadius, contentTop() + st::introTitleTop);
|
_title->moveToLeft(contentLeft() + st::buttonRadius, contentTop() + st::introTitleTop);
|
||||||
|
_description->resizeToWidth(st::introDescription.minWidth);
|
||||||
_description->moveToLeft(contentLeft() + st::buttonRadius, contentTop() + st::introDescriptionTop);
|
_description->moveToLeft(contentLeft() + st::buttonRadius, contentTop() + st::introDescriptionTop);
|
||||||
}
|
}
|
||||||
if (_error) {
|
if (_error) {
|
||||||
|
|
Loading…
Reference in New Issue