mirror of https://github.com/procxx/kepka.git
Fix layout of polls with huge questions.
This commit is contained in:
parent
ec84589eca
commit
2597bc9f4e
|
@ -302,10 +302,12 @@ void Poll::updateTexts() {
|
||||||
const auto willStartAnimation = checkAnimationStart();
|
const auto willStartAnimation = checkAnimationStart();
|
||||||
|
|
||||||
if (_question.toString() != _poll->question) {
|
if (_question.toString() != _poll->question) {
|
||||||
|
auto options = Ui::WebpageTextTitleOptions();
|
||||||
|
options.maxw = options.maxh = 0;
|
||||||
_question.setText(
|
_question.setText(
|
||||||
st::historyPollQuestionStyle,
|
st::historyPollQuestionStyle,
|
||||||
_poll->question,
|
_poll->question,
|
||||||
Ui::WebpageTextTitleOptions());
|
options);
|
||||||
}
|
}
|
||||||
if (_closed != _poll->closed || _subtitle.isEmpty()) {
|
if (_closed != _poll->closed || _subtitle.isEmpty()) {
|
||||||
_closed = _poll->closed;
|
_closed = _poll->closed;
|
||||||
|
|
Loading…
Reference in New Issue