Skip to content

Commit

Permalink
Fixed a bug that can't open a fileDialog to import/export a SDK file …
Browse files Browse the repository at this point in the history
…throughout the GUI. #250
  • Loading branch information
miquelcampos committed Sep 9, 2023
1 parent 15346e7 commit 144a8d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions release/scripts/mgear/rigbits/sdk_manager/SDK_manager_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,8 +303,8 @@ def create_connections(self):
# - M E N U - B A R - #
# ================================================================#
# File
self.export_SDKs_action.triggered.connect(self.export_SDKs)
self.import_SDKs_action.triggered.connect(self.import_SDKs)
self.export_SDKs_action.triggered.connect(lambda: self.export_SDKs())
self.import_SDKs_action.triggered.connect(lambda: self.import_SDKs())

# Select
self.select_all_sdk_ctls.triggered.connect(
Expand Down

0 comments on commit 144a8d0

Please sign in to comment.