mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:44:02 +02:00
Merge pull request #4340 from huffman/fix-repeat-captured-keys
Make KeyEvent objects equal even if they have differing isAutoRepeat val...
This commit is contained in:
commit
e7b36166ec
1 changed files with 1 additions and 2 deletions
|
@ -121,8 +121,7 @@ bool KeyEvent::operator==(const KeyEvent& other) const {
|
|||
&& other.isControl == isControl
|
||||
&& other.isMeta == isMeta
|
||||
&& other.isAlt == isAlt
|
||||
&& other.isKeypad == isKeypad
|
||||
&& other.isAutoRepeat == isAutoRepeat;
|
||||
&& other.isKeypad == isKeypad;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue