Skip to content

Commit 20cb196

Browse files
author
Shona Gillard
committed
Merge branch 'dev/sgillard/mat_ingest_warning_bug' into 'main'
REMIX-3870: Ingestion bug when importing textures See merge request lightspeedrtx/lightspeed-kit!857
2 parents bd84713 + 6a6e006 commit 20cb196

File tree

7 files changed

+13
-6
lines changed

7 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6969
- REMIX-3865: Fixed layer panel inconsistent muteness state
7070
- REMIX-3888: Fixed layer panel not refreshing after unloading stage + more fixes
7171
- REMIX-3832: Fix display of "display out" and other material attributes that shouldn't be hidden
72+
- REMIX-3870: Fixed ingestion bug for drag and drop
7273

7374
### Removed
7475

source/apps/lightspeed.app.trex.kit

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,6 @@ stdoutFailPatterns.exclude = [
6767
# Version lock for all dependencies:
6868
[settings.app.exts]
6969
enabled = [
70-
"omni.kit.asset_converter-2.8.3",
71-
"omni.kit.browser.asset-1.3.11",
7270
"omni.kit.browser.core-2.3.11",
7371
"omni.kit.browser.folder.core-1.10.1",
7472
"omni.kit.core.collection-0.2.0",
@@ -89,4 +87,4 @@ enabled = [
8987

9088
########################################################################################################################
9189
# END GENERATED PART
92-
########################################################################################################################
90+
########################################################################################################################

source/apps/lightspeed.app.trex.stagecraft.kit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,4 +137,4 @@ enabled = [
137137

138138
########################################################################################################################
139139
# END GENERATED PART
140-
########################################################################################################################
140+
########################################################################################################################

source/apps/lightspeed.app.trex_dev.kit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,4 @@ enabled = [
8989

9090
########################################################################################################################
9191
# END GENERATED PART
92-
########################################################################################################################
92+
########################################################################################################################

source/extensions/omni.flux.validator.mass.widget/config/extension.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ order = 100 # to start always after the plugins
33

44
[package]
55
# Semantic Versionning is used: https://semver.org/
6-
version = "1.9.0"
6+
version = "1.9.1"
77

88
# Lists people or organizations that are considered the "authors" of the package.
99
authors = ["Damien Bataille <[email protected]>"]

source/extensions/omni.flux.validator.mass.widget/docs/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
44

5+
## [1.9.1]
6+
### Fixed
7+
- Fixed tab enable status on context change
8+
59
## [1.9.0]
610
## Added
711
- Implemented the show function to update widgets when they are displayed in the UI

source/extensions/omni.flux.validator.mass.widget/omni/flux/validator/mass/widget/setup_ui.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -478,6 +478,10 @@ def show(self, value: bool):
478478
plugin.show(value)
479479
if self._mass_queue_widget:
480480
self._mass_queue_widget.show(value)
481+
# To ensure that only the previously selected tab is the only enabled one,
482+
# adding a call to the self._on_schema_selection_changed func.
483+
if self._schema_tree_view.selection[0]:
484+
self._on_schema_selection_changed(self._schema_tree_view.selection[0].title)
481485

482486
def destroy(self):
483487
self.__root_frame.clear()

0 commit comments

Comments
 (0)