Merge pull request 'fix/bug-77275' (#755) from fix/bug-77275 into release/v9.1.0

Reviewed-on: https://git.onlyoffice.com/ONLYOFFICE/web-apps/pulls/755
This commit is contained in:
Oleg Korshul
2025-10-06 12:19:26 +00:00
4 changed files with 23 additions and 7 deletions

View File

@ -119,7 +119,7 @@ define([
VE.getController('Common.Controllers.Shortcuts').updateShortcutHints({
OpenChatPanel: {
btn: this.btnChat,
label: this.tipChat
label: this.tipChat + Common.Utils.String.platformKey('Alt+Q', ' (' + (Common.Utils.isMac ? Common.Utils.String.textCtrl + '+' : '') + '{0})')
}
});

View File

@ -57,11 +57,11 @@ define([
VE.getController('Common.Controllers.Shortcuts').updateShortcutHints({
ZoomOut: {
btn: me.btnZoomDown,
label: me.tipZoomOut
label: me.tipZoomOut + Common.Utils.String.platformKey('Ctrl+-')
},
ZoomIn: {
btn: me.btnZoomUp,
label: me.tipZoomIn
label: me.tipZoomIn + Common.Utils.String.platformKey('Ctrl++')
}
});