[DE] Fix Bug 53902

This commit is contained in:
ShimaginAndrey 2021-12-01 14:22:17 +03:00
parent ed835111b8
commit f1d606304a

View file

@ -525,11 +525,11 @@ class MainController extends Component {
this.api.Resize(); this.api.Resize();
}); });
$$(window).on('popover:open popup:open sheet:open actions:open', () => { $$(window).on('popover:open popup:open sheet:open actions:open dialog:open', () => {
this.api.asc_enableKeyEvents(false); this.api.asc_enableKeyEvents(false);
}); });
$$(window).on('popover:close popup:close sheet:close actions:close', () => { $$(window).on('popover:close popup:close sheet:close actions:close dialog:close', () => {
this.api.asc_enableKeyEvents(true); this.api.asc_enableKeyEvents(true);
}); });