aboutsummaryrefslogtreecommitdiffstats
path: root/Lib/defconQt
diff options
context:
space:
mode:
authorAdrien Tétar2015-10-18 21:28:06 +0200
committerAdrien Tétar2015-10-18 21:28:06 +0200
commit73973bfacc55c39d6b57acf1140e28fa1feb46ba (patch)
tree1afccc7d1408cb50f653f1e44ae417b66c91ea6e /Lib/defconQt
parent495d043291f65264ea146dfa7da9a4debd05f64c (diff)
downloadtrufont-73973bfacc55c39d6b57acf1140e28fa1feb46ba.tar.bz2
glyphCollectionView: Return, not Enter
Diffstat (limited to 'Lib/defconQt')
-rw-r--r--Lib/defconQt/glyphCollectionView.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/defconQt/glyphCollectionView.py b/Lib/defconQt/glyphCollectionView.py
index 0fdef90..e333ca7 100644
--- a/Lib/defconQt/glyphCollectionView.py
+++ b/Lib/defconQt/glyphCollectionView.py
@@ -226,7 +226,7 @@ class GlyphCollectionWidget(QWidget):
modifiers = event.modifiers()
if key in arrowKeys:
self._arrowKeyPressEvent(event)
- elif key == Qt.Key_Enter:
+ elif key == Qt.Key_Return:
index = self._lastSelectedCell
if index is not None and self.doubleClickCallback is not None:
# TODO: does it still make sense to call this doubleClickCallback?