tune out orders

This commit is contained in:
Jakub Trllo 2025-11-13 17:26:55 +01:00
parent 46b534cfcc
commit efa702405c
3 changed files with 4 additions and 2 deletions

View file

@ -45,6 +45,7 @@ class CopyFileActionPlugin(LoaderActionPlugin):
output.append( output.append(
LoaderActionItem( LoaderActionItem(
label=repre_name, label=repre_name,
order=32,
group_label="Copy file path", group_label="Copy file path",
data={ data={
"representation_id": repre_id, "representation_id": repre_id,
@ -60,6 +61,7 @@ class CopyFileActionPlugin(LoaderActionPlugin):
output.append( output.append(
LoaderActionItem( LoaderActionItem(
label=repre_name, label=repre_name,
order=33,
group_label="Copy file", group_label="Copy file",
data={ data={
"representation_id": repre_id, "representation_id": repre_id,

View file

@ -66,7 +66,7 @@ class DeleteOldVersions(LoaderActionPlugin):
), ),
LoaderActionItem( LoaderActionItem(
label="Calculate Versions size", label="Calculate Versions size",
order=30, order=34,
data={ data={
"product_ids": list(product_ids), "product_ids": list(product_ids),
"action": "calculate-versions-size", "action": "calculate-versions-size",

View file

@ -304,7 +304,7 @@ class OpenFileAction(LoaderActionPlugin):
LoaderActionItem( LoaderActionItem(
label=repre_name, label=repre_name,
group_label="Open file", group_label="Open file",
order=-10, order=30,
data={"representation_ids": list(repre_ids)}, data={"representation_ids": list(repre_ids)},
icon={ icon={
"type": "material-symbols", "type": "material-symbols",