mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-19 09:37:14 +02:00
6 lines
200 B
Python
Executable file
6 lines
200 B
Python
Executable file
|
|
def registerTypes():
|
|
from PySide2.QtQml import qmlRegisterType
|
|
from meshroom.ui.components.edge import EdgeMouseArea
|
|
|
|
qmlRegisterType(EdgeMouseArea, "GraphEditor", 1, 0, "EdgeMouseArea")
|