From 95916cdb7a127e1efd854cdeae5c65d1ebff8858 Mon Sep 17 00:00:00 2001 From: maxkadushkin Date: Tue, 10 Dec 2024 11:42:16 +0300 Subject: [PATCH] [desktop] receive "native" info about installed printers --- apps/common/main/lib/controller/Desktop.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/common/main/lib/controller/Desktop.js b/apps/common/main/lib/controller/Desktop.js index c11d11f088..2871e754bd 100644 --- a/apps/common/main/lib/controller/Desktop.js +++ b/apps/common/main/lib/controller/Desktop.js @@ -198,6 +198,9 @@ define([ if (/file:print/.test(cmd)) { webapp.getController('Main').onPrint(); } else + if (/printer:config/.test(cmd)) { + console.log('on print:config', param); + } else if (/file:saveas/.test(cmd)) { webapp.getController('Main').api.asc_DownloadAs(); } else