mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-07-24 12:07:19 +02:00
[ui] Cosmetic modifications
Cosmetic modifications such as missing spaces.
This commit is contained in:
parent
b74cada8ef
commit
9f96f68a95
5 changed files with 26 additions and 24 deletions
|
@ -82,17 +82,17 @@ class FilesByType:
|
|||
self.images = []
|
||||
self.videos = []
|
||||
self.panoramaInfo = []
|
||||
self.meshroomScene = []
|
||||
self.meshroomScenes = []
|
||||
self.other = []
|
||||
|
||||
def __bool__(self):
|
||||
return self.images or self.videos or self.panoramaInfo or self.meshroomScene
|
||||
return self.images or self.videos or self.panoramaInfo or self.meshroomScenes
|
||||
|
||||
def extend(self, other):
|
||||
self.images.extend(other.images)
|
||||
self.videos.extend(other.videos)
|
||||
self.panoramaInfo.extend(other.panoramaInfo)
|
||||
self.meshroomScene.extend(other.meshroomScene)
|
||||
self.meshroomScenes.extend(other.meshroomScenes)
|
||||
self.other.extend(other.other)
|
||||
|
||||
def addFile(self, file):
|
||||
|
@ -103,7 +103,7 @@ class FilesByType:
|
|||
elif hasExtension(file, panoramaInfoExtensions):
|
||||
self.panoramaInfo.append(file)
|
||||
elif hasExtension(file, meshroomSceneExtensions):
|
||||
self.meshroomScene.append(file)
|
||||
self.meshroomScenes.append(file)
|
||||
else:
|
||||
self.other.append(file)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue