aboutsummaryrefslogtreecommitdiffstats
path: root/Lib/defconQt/glyphCollectionView.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/defconQt/glyphCollectionView.py')
-rw-r--r--Lib/defconQt/glyphCollectionView.py13
1 files changed, 6 insertions, 7 deletions
diff --git a/Lib/defconQt/glyphCollectionView.py b/Lib/defconQt/glyphCollectionView.py
index eb939a5..795ac08 100644
--- a/Lib/defconQt/glyphCollectionView.py
+++ b/Lib/defconQt/glyphCollectionView.py
@@ -147,13 +147,12 @@ class GlyphCollectionWidget(QWidget):
event.acceptProposedAction()
def pipeDragMoveEvent(self, event):
- if event.source() == self:
- # Get the position in scrollArea canvas coordinates (from the
- # beginning of the widget we are scrolling over)
- pos = self.mapFromParent(event.pos())
- self.currentDropIndex = int(
- self._columns * (pos.y() // self.squareSize) +
- (pos.x() + .5 * self.squareSize) // self.squareSize)
+ # Get the position in scrollArea canvas coordinates (from the
+ # beginning of the widget we are scrolling over)
+ pos = self.mapFromParent(event.pos())
+ self.currentDropIndex = int(
+ self._columns * (pos.y() // self.squareSize) +
+ (pos.x() + .5 * self.squareSize) // self.squareSize)
def pipeDragLeaveEvent(self, event):
self.currentDropIndex = None