[ui][fix] Edge: Fixed the type for mouse event modifiers

With PySide6 the modifiers are now enum.Flag based. Updated type ensures the alt+mouse click removes edges from graphs
This commit is contained in:
waaake 2025-01-12 17:10:11 +05:30 committed by Candice Bentéjac
parent 09720f6be1
commit 456c3ccaea

View file

@ -1,4 +1,4 @@
from PySide6.QtCore import Signal, Property, QPointF, Qt, QObject
from PySide6.QtCore import Signal, Property, QPointF, Qt, QObject, Slot, QRectF
from PySide6.QtGui import QPainterPath, QVector2D
from PySide6.QtQuick import QQuickItem