From 027e80f36016d4e9f2a6db93c9d4ff84934f5dc7 Mon Sep 17 00:00:00 2001 From: maxkadushkin Date: Mon, 17 Jun 2024 10:58:58 +0300 Subject: [PATCH] [desktop] fix bug 68666 --- apps/common/main/lib/controller/Desktop.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/main/lib/controller/Desktop.js b/apps/common/main/lib/controller/Desktop.js index 0de34f4573..152ab62c70 100644 --- a/apps/common/main/lib/controller/Desktop.js +++ b/apps/common/main/lib/controller/Desktop.js @@ -616,7 +616,7 @@ define([ menu.hide(); } else if ( action == 'create:fromtemplate' ) { - native.execCommand('create:new', 'template:' + (!!window.SSE ? 'cell' : !!window.PE ? 'slide' : 'word')); + native.execCommand('create:new', 'template:' + (!!window.SSE ? 'cell' : !!window.PE ? 'slide' : !!window.PDFE ? 'form' : 'word')); menu.hide(); } },