Merge pull request #2894 from pypeclub/bugfix/scene_inventory_load_fixes

SceneInventory: Fix import of load function
This commit is contained in:
Jakub Trllo 2022-03-16 11:26:38 +01:00 committed by GitHub
commit c21026b613
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -31,6 +31,7 @@ from .load import (
loaders_from_representation,
get_representation_path,
get_repres_contexts,
)
from .publish import (
@ -75,6 +76,7 @@ __all__ = (
"loaders_from_representation",
"get_representation_path",
"get_repres_contexts",
# --- Publish ---
"PublishValidationError",

View file

@ -61,7 +61,7 @@ class SceneInventoryWindow(QtWidgets.QDialog):
icon = qtawesome.icon("fa.refresh", color="white")
refresh_button = QtWidgets.QPushButton(self)
update_all_button.setToolTip("Refresh")
refresh_button.setToolTip("Refresh")
refresh_button.setIcon(icon)
control_layout = QtWidgets.QHBoxLayout()