mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-08-03 00:38:41 +02:00
[ui] new Thumbnail disk cache
This commit is contained in:
parent
27ce3df5cb
commit
ff6358ea07
3 changed files with 85 additions and 2 deletions
|
@ -15,6 +15,7 @@ from meshroom.ui import components
|
|||
from meshroom.ui.components.clipboard import ClipboardHelper
|
||||
from meshroom.ui.components.filepath import FilepathHelper
|
||||
from meshroom.ui.components.scene3D import Scene3DHelper, Transformations3DHelper
|
||||
from meshroom.ui.components.thumbnail import ThumbnailCache
|
||||
from meshroom.ui.palette import PaletteManager
|
||||
from meshroom.ui.reconstruction import Reconstruction
|
||||
from meshroom.ui.utils import QmlInstantEngine
|
||||
|
@ -146,6 +147,7 @@ class MeshroomApp(QApplication):
|
|||
self.engine.rootContext().setContextProperty("Scene3DHelper", Scene3DHelper(parent=self))
|
||||
self.engine.rootContext().setContextProperty("Transformations3DHelper", Transformations3DHelper(parent=self))
|
||||
self.engine.rootContext().setContextProperty("Clipboard", ClipboardHelper(parent=self))
|
||||
self.engine.rootContext().setContextProperty("ThumbnailCache", ThumbnailCache(parent=self))
|
||||
|
||||
# additional context properties
|
||||
self.engine.rootContext().setContextProperty("_PaletteManager", PaletteManager(self.engine, parent=self))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue