提交 190eef07 编写于 作者: P Palana

UI: Handle empty key combos from QEvents in hotkey dialog

This should allow entering alt + numpad N (N > 0) on windows since there
doesn't seem to be a way to completely ignore input events generated
from "alt codes"
上级 9b073091
......@@ -142,7 +142,7 @@ void OBSHotkeyEdit::mousePressEvent(QMouseEvent *event)
void OBSHotkeyEdit::HandleNewKey(obs_key_combination_t new_key)
{
if (new_key == key)
if (new_key == key || obs_key_combination_is_empty(new_key))
return;
key = new_key;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册