why we are not able to select multiple files in veritcle view and able to select multiple file in horizontal view in omniverse
but when i am trying to select in verticle view it’s not selecting multiple file
and this code i am using for selection
def on_selectOSMGmlFile(self):
try:
self.uiStatusLabel.text = “”
file_importer = get_file_importer()
file_importer.show_window(
title=“Select OSM File”,
# allow_multi_selection=True,
import_handler=self.import_handler,
file_extension_types=[(“.gml, .osm", “CityGML file and OSM file”), (".gml", “CityGML file”),
(".osm”, “OSM file”), (“.usd, .usda, .usdc", “USD file”),
(".obj", “Wavefront”), (".gltf, .glb", “GLTF”), (".fbx", “Filmbox”),
(".”, “All files”)],
file_filter_handler=self.file_filter_handler)
file_importer.detach_from_main_window()
except:
print(‘Failed performing OSM 2 City gml conversion’)
could you please provide me concreet solution regarding this issue, Thanks