Fixed overlapping emoji suggestions in Replies section.
This commit is contained in:
parent
cba0ebce6e
commit
2de0b79b4e
|
@ -1015,8 +1015,11 @@ void ComposeControls::init() {
|
||||||
}, _wrap->lifetime());
|
}, _wrap->lifetime());
|
||||||
|
|
||||||
_header->visibleChanged(
|
_header->visibleChanged(
|
||||||
) | rpl::start_with_next([=] {
|
) | rpl::start_with_next([=](bool shown) {
|
||||||
updateHeight();
|
updateHeight();
|
||||||
|
if (shown) {
|
||||||
|
raisePanels();
|
||||||
|
}
|
||||||
}, _wrap->lifetime());
|
}, _wrap->lifetime());
|
||||||
|
|
||||||
sendContentRequests(
|
sendContentRequests(
|
||||||
|
|
Loading…
Reference in New Issue