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"
This commit is contained in:
Palana 2015-05-15 16:26:10 +02:00
parent 9b07309147
commit 190eef07a6

View file

@ -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;