mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-03-01 19:20:10 +00:00
[3d] add recording video support (#3749)
Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
@@ -89,6 +89,16 @@ export class ViewHelperManager implements ViewHelperManagerInterface {
|
||||
|
||||
handleResize(): void {}
|
||||
|
||||
visibleViewHelper(visible: boolean) {
|
||||
if (visible) {
|
||||
this.viewHelper.visible = true
|
||||
this.viewHelperContainer.style.display = 'block'
|
||||
} else {
|
||||
this.viewHelper.visible = false
|
||||
this.viewHelperContainer.style.display = 'none'
|
||||
}
|
||||
}
|
||||
|
||||
recreateViewHelper(): void {
|
||||
if (this.viewHelper) {
|
||||
this.viewHelper.dispose()
|
||||
|
||||
Reference in New Issue
Block a user