diff options
| author | Adrien Tétar | 2015-10-18 21:28:06 +0200 |
|---|---|---|
| committer | Adrien Tétar | 2015-10-18 21:28:06 +0200 |
| commit | 73973bfacc55c39d6b57acf1140e28fa1feb46ba (patch) | |
| tree | 1afccc7d1408cb50f653f1e44ae417b66c91ea6e /Lib/defconQt/glyphCollectionView.py | |
| parent | 495d043291f65264ea146dfa7da9a4debd05f64c (diff) | |
| download | trufont-73973bfacc55c39d6b57acf1140e28fa1feb46ba.tar.bz2 | |
glyphCollectionView: Return, not Enter
Diffstat (limited to 'Lib/defconQt/glyphCollectionView.py')
| -rw-r--r-- | Lib/defconQt/glyphCollectionView.py | 2 |
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? |
