aboutsummaryrefslogtreecommitdiffstats
path: root/Lib/defconQt/glyphCollectionView.py
diff options
context:
space:
mode:
authorAdrien Tétar2015-10-02 00:14:14 +0200
committerAdrien Tétar2015-10-02 00:14:14 +0200
commit0a26c2f99776069ff83f504eb4a14125cf87b0f2 (patch)
treef86d7dfd4bbf2f4f2d9f81d9d150cd195e7454cf /Lib/defconQt/glyphCollectionView.py
parent6b32627ff16720adfe32c5eed8223a24a383ad8d (diff)
downloadtrufont-0a26c2f99776069ff83f504eb4a14125cf87b0f2.tar.bz2
objects,glyphCollectionView: bug fixes
Diffstat (limited to 'Lib/defconQt/glyphCollectionView.py')
-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 b0d4461..2134134 100644
--- a/Lib/defconQt/glyphCollectionView.py
+++ b/Lib/defconQt/glyphCollectionView.py
@@ -170,7 +170,7 @@ class GlyphCollectionWidget(QWidget):
# as is done in groupsView
elif key == Qt.Key_Delete:
#if self.characterDeletionCallback is not None:
- if self.proceedWithDeletion() and self.selection:
+ if proceedWithDeletion() and self.selection:
# we need to del in reverse order to keep key references valid
for key in sorted(self._selection, reverse=True):
glyph = self._glyphs[key]