Fix auto word wrap in intro description.

This commit is contained in:
John Preston 2018-11-26 11:32:37 +04:00
parent f8fc554f78
commit 2fc5b69465
2 changed files with 2 additions and 0 deletions

View File

@ -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;

View File

@ -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) {