@netless/window-manager 0.4.9-canary.2 → 0.4.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/dist/AppProxy.d.ts +1 -1
- package/dist/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/AppProxy.ts +2 -1
package/package.json
CHANGED
package/src/AppProxy.ts
CHANGED
@@ -92,7 +92,7 @@ export class AppProxy {
|
|
92
92
|
|
93
93
|
public getFullScenePath(): string | undefined {
|
94
94
|
if (this.scenePath) {
|
95
|
-
return get(this.appAttributes, [Fields.FullPath]
|
95
|
+
return get(this.appAttributes, [Fields.FullPath]) || this.getFullScenePathFromScenes();
|
96
96
|
}
|
97
97
|
}
|
98
98
|
|
@@ -347,6 +347,7 @@ export class AppProxy {
|
|
347
347
|
if (fullPath && this.view) {
|
348
348
|
setViewFocusScenePath(this.view, fullPath);
|
349
349
|
}
|
350
|
+
return fullPath;
|
350
351
|
}
|
351
352
|
|
352
353
|
private async createView(): Promise<View> {
|