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:
Brad Hefta-Gaub 2015-02-25 12:24:19 -08:00
commit e7b36166ec

View file

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