Ignore shortcuts when preview is shown.

This commit is contained in:
John Preston 2024-05-30 17:12:28 +04:00
parent 4f5594c8cc
commit aa4156d1e7
1 changed files with 2 additions and 1 deletions

View File

@ -3997,7 +3997,8 @@ void InnerWidget::setupShortcuts() {
return isActiveWindow()
&& !_controller->isLayerShown()
&& !_controller->window().locked()
&& !_childListShown.current().shown;
&& !_childListShown.current().shown
&& !_chatPreviewKey;
}) | rpl::start_with_next([=](not_null<Shortcuts::Request*> request) {
using Command = Shortcuts::Command;