mirror of https://github.com/procxx/kepka.git
fixed keyboard hide
This commit is contained in:
parent
73cade9fd9
commit
f0123fffa8
|
@ -3188,6 +3188,7 @@ void HistoryWidget::updateControlsVisibility() {
|
||||||
_cmdStart.hide();
|
_cmdStart.hide();
|
||||||
_attachType.hide();
|
_attachType.hide();
|
||||||
_emojiPan.hide();
|
_emojiPan.hide();
|
||||||
|
_kbScroll.hide();
|
||||||
if (!_field.isHidden()) {
|
if (!_field.isHidden()) {
|
||||||
_field.hide();
|
_field.hide();
|
||||||
resizeEvent(0);
|
resizeEvent(0);
|
||||||
|
|
|
@ -1567,7 +1567,7 @@ void Window::notifyUpdateAllPhotos() {
|
||||||
(*i)->updatePeerPhoto();
|
(*i)->updatePeerPhoto();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (_mediaView) _mediaView->updateControls();
|
if (_mediaView && !_mediaView->isHidden()) _mediaView->updateControls();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Window::notifyUpdateAll() {
|
void Window::notifyUpdateAll() {
|
||||||
|
|
Loading…
Reference in New Issue