[Automated] Merged develop into main

This commit is contained in:
ynbot 2023-06-26 16:00:35 +02:00 committed by GitHub
commit 5edd5021ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 2 deletions

View file

@ -35,6 +35,7 @@ body:
label: Version
description: What version are you running? Look to OpenPype Tray
options:
- 3.15.11-nightly.5
- 3.15.11-nightly.4
- 3.15.11-nightly.3
- 3.15.11-nightly.2
@ -134,7 +135,6 @@ body:
- 3.14.4-nightly.1
- 3.14.3
- 3.14.3-nightly.7
- 3.14.3-nightly.6
validations:
required: true
- type: dropdown

View file

@ -2,7 +2,7 @@ import os
import nuke
from openpype import resources
from .lib import maintained_selection
from qtpy import QtWidgets
def set_context_favorites(favorites=None):
@ -55,6 +55,7 @@ def bake_gizmos_recursively(in_group=None):
Arguments:
is_group (nuke.Node)[optonal]: group node or all nodes
"""
from .lib import maintained_selection
if in_group is None:
in_group = nuke.Root()
# preserve selection after all is done
@ -129,3 +130,11 @@ def get_colorspace_list(colorspace_knob):
reduced_clrs.append(clrs)
return reduced_clrs
def is_headless():
"""
Returns:
bool: headless
"""
return QtWidgets.QApplication.instance() is None

View file

@ -1,6 +1,7 @@
"""Host API required Work Files tool"""
import os
import nuke
from .utils import is_headless
def file_extensions():
@ -25,6 +26,12 @@ def open_file(filepath):
# To remain in the same window, we have to clear the script and read
# in the contents of the workfile.
nuke.scriptClear()
if not is_headless():
autosave = nuke.toNode("preferences")["AutoSaveName"].evaluate()
autosave_prmpt = "Autosave detected.\nWould you like to load the autosave file?" # noqa
if os.path.isfile(autosave) and nuke.ask(autosave_prmpt):
filepath = autosave
nuke.scriptReadFile(filepath)
nuke.Root()["name"].setValue(filepath)
nuke.Root()["project_directory"].setValue(os.path.dirname(filepath))