QWheelEvent.orientation() is obsolete, used angleDelta() instead

This commit is contained in:
Dmitri Bogomolov 2018-03-01 17:40:13 +02:00
parent 284a915976
commit 1740b99492
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13

View File

@ -56,7 +56,7 @@ class MessageView(QtWidgets.QTextBrowser):
if ( if (
(QtWidgets.QApplication.queryKeyboardModifiers() & (QtWidgets.QApplication.queryKeyboardModifiers() &
QtCore.Qt.ControlModifier) == QtCore.Qt.ControlModifier and QtCore.Qt.ControlModifier) == QtCore.Qt.ControlModifier and
event.orientation() == QtCore.Qt.Vertical event.angleDelta().y() != 0
): ):
zoom = self.currentFont().pointSize() * 100 / self.defaultFontPointSize zoom = self.currentFont().pointSize() * 100 / self.defaultFontPointSize
QtWidgets.QApplication.activeWindow().statusbar.showMessage( QtWidgets.QApplication.activeWindow().statusbar.showMessage(