Why we are not able to select multiple files in veritcle view and able to select multiple file in horizontal view in omniverse nvidia (original) (raw)

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

image

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

and now I am able to select files in this way like in Horizontal way with same code

image

Why are you trying to select files, which is a mouse GUI operation, with code? If you have the gui open, why do you need to use code?

I am trying to select manually only but i am not able to select vertical way multiple file and i am able to select Horizontal way in multiple files it’s attached in the image , and code prospective you can see in the code i am creating “osm select window” through code that’s why i asked why i am not able to select multiple file in verticle way

I have tested this possible bug in the latest Composer 107.0.3 and it works just fine. I can select any multiple files both in horizontal or vertical. Are you using an old version of Composer?