remove Qt4 mouse wheel handling
This commit is contained in:
parent
1a29cf7579
commit
b843214f66
@ -1,4 +1,4 @@
|
||||
from ..Qt import QtCore, QtGui, QtWidgets, QT_LIB
|
||||
from ..Qt import QtCore, QtGui, QtWidgets
|
||||
from OpenGL.GL import *
|
||||
import OpenGL.GL.framebufferobjects as glfbo
|
||||
import numpy as np
|
||||
@ -466,10 +466,6 @@ class GLViewWidget(QtWidgets.QOpenGLWidget):
|
||||
#self.swapBuffers()
|
||||
|
||||
def wheelEvent(self, ev):
|
||||
delta = 0
|
||||
if QT_LIB in ['PyQt4', 'PySide']:
|
||||
delta = ev.delta()
|
||||
else:
|
||||
delta = ev.angleDelta().x()
|
||||
if delta == 0:
|
||||
delta = ev.angleDelta().y()
|
||||
|
@ -317,10 +317,6 @@ class GraphicsView(QtGui.QGraphicsView):
|
||||
super().wheelEvent(ev)
|
||||
if not self.mouseEnabled:
|
||||
return
|
||||
delta = 0
|
||||
if QT_LIB in ['PyQt4', 'PySide']:
|
||||
delta = ev.delta()
|
||||
else:
|
||||
delta = ev.angleDelta().x()
|
||||
if delta == 0:
|
||||
delta = ev.angleDelta().y()
|
||||
|
Loading…
x
Reference in New Issue
Block a user