From 7aaacc63eb600c30e75ec0b289ea6986a97066ec Mon Sep 17 00:00:00 2001 From: Konstantin Kireyev Date: Tue, 16 Sep 2025 22:06:54 +0500 Subject: [PATCH] fix bug 73667 --- apps/common/main/lib/component/MetricSpinner.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/common/main/lib/component/MetricSpinner.js b/apps/common/main/lib/component/MetricSpinner.js index cd6f774ac3..fb1a743dd7 100644 --- a/apps/common/main/lib/component/MetricSpinner.js +++ b/apps/common/main/lib/component/MetricSpinner.js @@ -379,7 +379,9 @@ define([ if (this.options.hold && ( e.keyCode==Common.UI.Keys.UP || e.keyCode==Common.UI.Keys.DOWN)) { e.preventDefault(); e.stopPropagation(); - if (this.switches.timeout===undefined) { + if (e.metaKey) { + this._step(e.keyCode === Common.UI.Keys.UP); + } else if (this.switches.timeout===undefined) { this.switches.fromKeyDown = true; this._startSpin(e.keyCode==Common.UI.Keys.UP, e); }