Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Move set render settings menu entry
Browse files Browse the repository at this point in the history
  • Loading branch information
BigRoy committed Aug 15, 2022
1 parent 18056a3 commit 5cb99f5
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions openpype/hosts/maya/api/menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,6 @@ def deferred():

cmds.menuItem(divider=True)

cmds.menuItem(
"Set Render Settings",
command=lambda *args: lib_rendersettings.RenderSettings().set_default_renderer_settings() # noqa
)

cmds.menuItem(divider=True)

cmds.menuItem(
"Work Files...",
command=lambda *args: host_tools.show_workfiles(
Expand All @@ -127,6 +120,12 @@ def deferred():
"Set Colorspace",
command=lambda *args: lib.set_colorspace(),
)

cmds.menuItem(
"Set Render Settings",
command=lambda *args: lib_rendersettings.RenderSettings().set_default_renderer_settings() # noqa
)

cmds.menuItem(divider=True, parent=MENU_NAME)
cmds.menuItem(
"Build First Workfile",
Expand Down

0 comments on commit 5cb99f5

Please sign in to comment.