mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-04 01:08:26 +02:00
* avoid non-cross platform hacks to convert string path to urls * use standard python API
9 lines
365 B
Python
Executable file
9 lines
365 B
Python
Executable file
|
|
def registerTypes():
|
|
from PySide2.QtQml import qmlRegisterType
|
|
from meshroom.ui.components.edge import EdgeMouseArea
|
|
from meshroom.ui.components.filepath import FilepathHelper
|
|
|
|
qmlRegisterType(EdgeMouseArea, "GraphEditor", 1, 0, "EdgeMouseArea")
|
|
qmlRegisterType(FilepathHelper, "Meshroom.Helpers", 1, 0, "FilepathHelper") # TODO: uncreatable
|
|
|