diff options
| author | Adrien Tétar | 2015-09-09 20:51:05 +0200 | 
|---|---|---|
| committer | Adrien Tétar | 2015-09-09 20:51:05 +0200 | 
| commit | a23778cd5350861de61c25e27ce921419b1c125c (patch) | |
| tree | 4cd6dffc7b261bcee83100284cf1d9c553820258 /Lib/defconQt/groupsView.py | |
| parent | 0bb4ff790776350fbd728fe7a960fd903f703472 (diff) | |
| download | trufont-a23778cd5350861de61c25e27ce921419b1c125c.tar.bz2 | |
glyphView: react to spacing changes, account modifiers when moving points
Diffstat (limited to 'Lib/defconQt/groupsView.py')
| -rw-r--r-- | Lib/defconQt/groupsView.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/Lib/defconQt/groupsView.py b/Lib/defconQt/groupsView.py index 75b7b10..adf0b9d 100644 --- a/Lib/defconQt/groupsView.py +++ b/Lib/defconQt/groupsView.py @@ -88,7 +88,7 @@ class GroupCharacterWidget(CharacterWidget):      def pipeDragEnterEvent(self, event):          # TODO: the problem with text/plain is that any sort of text can get here.          # (It allows direct compatibility with featureTextEditor though.) -        if (event.mimeData().hasFormat("text/plain")): +        if (event.mimeData().hasText()):              event.acceptProposedAction()      def pipeDropEvent(self, event): | 
