mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 02:03:57 +02:00
Make KeyEvent objects equal even if they have differing isAutoRepeat values
This commit is contained in:
parent
880c8f370f
commit
660d9ad499
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