Fixed display of send as button above voice record bar.

This commit is contained in:
23rd 2022-11-12 09:33:19 +03:00 committed by John Preston
parent 823b4e6b98
commit 95a1ab6b0b
2 changed files with 4 additions and 0 deletions

View File

@ -2444,6 +2444,7 @@ void HistoryWidget::setEditMsgId(MsgId msgId) {
_editMsgId = msgId;
if (_history) {
refreshSendAsToggle();
orderWidgets();
}
registerDraftSource();
}
@ -2568,6 +2569,7 @@ void HistoryWidget::setupSendAsToggle() {
refreshSendAsToggle();
updateControlsVisibility();
updateControlsGeometry();
orderWidgets();
}, lifetime());
}

View File

@ -1375,6 +1375,7 @@ void ComposeControls::init() {
if (_history && updateSendAsButton()) {
updateControlsVisibility();
updateControlsGeometry(_wrap->size());
orderControls();
}
registerDraftSource();
}, _wrap->lifetime());
@ -2064,6 +2065,7 @@ void ComposeControls::initSendAsButton() {
if (updateSendAsButton()) {
updateControlsVisibility();
updateControlsGeometry(_wrap->size());
orderControls();
}
}, _wrap->lifetime());
}