aboutsummaryrefslogtreecommitdiffstats
path: root/Lib/defconQt/glyphCollectionView.py
diff options
context:
space:
mode:
authorDenis Jacquerye2015-10-14 11:44:45 +0100
committerAdrien Tétar2015-10-14 13:47:40 +0200
commitb63c182aa1291d01d815cf2b45dfa4f1317f417b (patch)
tree846aa109cb9a5bd6234461825ee0a25f66f53d1a /Lib/defconQt/glyphCollectionView.py
parenteae22214e405e7101e61333786a3bfcc9b44b8c5 (diff)
downloadtrufont-b63c182aa1291d01d815cf2b45dfa4f1317f417b.tar.bz2
glyphCollectionView: proceedWithDeletion() needs one argument
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 37edb45..e2c9c1c 100644
--- a/Lib/defconQt/glyphCollectionView.py
+++ b/Lib/defconQt/glyphCollectionView.py
@@ -230,7 +230,7 @@ class GlyphCollectionWidget(QWidget):
# as is done in groupsView
elif key == Qt.Key_Delete:
#if self.characterDeletionCallback is not None:
- if proceedWithDeletion() and self.selection:
+ if proceedWithDeletion(self) 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]