mirror of
https://github.com/Suwayomi/Suwayomi-Server.git
synced 2026-07-03 10:54:38 -05:00
@@ -466,8 +466,9 @@ class KcefWebView {
|
|||||||
val clickY = msg.clickY
|
val clickY = msg.clickY
|
||||||
val modifier =
|
val modifier =
|
||||||
(
|
(
|
||||||
(if (msg.altKey == true) InputEvent.ALT_DOWN_MASK else 0) or
|
// Alt support is removed, since browsers already translate, so this messes with translation, see #1575
|
||||||
(if (msg.ctrlKey == true) InputEvent.CTRL_DOWN_MASK else 0) or
|
// (if (msg.altKey == true) InputEvent.ALT_DOWN_MASK else 0) or
|
||||||
|
(if (msg.ctrlKey == true) InputEvent.CTRL_DOWN_MASK else 0) or
|
||||||
(if (msg.shiftKey == true) InputEvent.SHIFT_DOWN_MASK else 0) or
|
(if (msg.shiftKey == true) InputEvent.SHIFT_DOWN_MASK else 0) or
|
||||||
(if (msg.metaKey == true) InputEvent.META_DOWN_MASK else 0)
|
(if (msg.metaKey == true) InputEvent.META_DOWN_MASK else 0)
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user