Resolving Right-Click Menu Response Issues with Chinese Input Method

I've found that the 'right-click menu' in Opus does not disable the Chinese input method. For example, when I open the 'right-click menu' with the Chinese input method active, and then press the key "D" to delete a file, Opus does not perform the operation; instead, it brings up the input method window. However, this issue does not occur in File Explorer and Total Commander, where the 'right-click menu' can still be used in conjunction with shortcut keys.

It's worth noting that I've seen this issue discussed in a forum post from August: The right-click menu cannot be triggered with keyboard shortcuts in the Chinese/Japanes input method, but it has not been resolved even in the current 13.11 version of Opus. I can't help but feel that the official team may have forgotten about this issue. I hope that through this post, I can remind the official team to revisit this problem.

I eagerly anticipate the future enhancements and innovations that Directory Opus will introduce, enriching our user experience with more capabilities and features.

2 Likes

Autohotkey v2 Temporary solution:

#HotIf WinExist("ahk_class dopus.button.display.popup")
`::
,::
.::
/::
;::
'::
[::
]::
\::
-::
=::
*:: ; 虽然中文状态*仍然能响应菜单,但有可能触发过滤器快捷键,故此段需加入,上面的几个也同理
0::
1::
2::
3::
4::
5::
6::
7::
8::
9::
a::
b::
c::
d::
e::
f::
g::
h::
i::
j::
k::
l::
m::
n::
o::
p::
q::
r::
s::
t::
u::
v::
w::
x::
y::
z::SendSelf()

SendSelf() {
    controlSend A_ThisHotkey, , "ahk_class dopus.button.display.popup"
}

This is not perfect.
I still hope official developer can solve this problem.

1 Like

It's hard for us to test things relating to IME's, but please try the next beta (13.11.3) and let us know if it solves the issue.

I'm surprised this has only been reported now because as far as I can tell it must never have worked properly!

3 Likes

Resolved in 13.11.3 beta.

1 Like