Explorar el Código

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"
Palana hace 11 años
padre
commit
190eef07a6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      obs/hotkey-edit.cpp

+ 1 - 1
obs/hotkey-edit.cpp

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