From 033725d3a9ee0abc69fde27f5eef3ed79b402244 Mon Sep 17 00:00:00 2001 From: Jakub Jezek Date: Mon, 20 Jan 2025 12:08:42 +0100 Subject: [PATCH] Fix clip attribute value for frame rate options Updated the frame rate option to correctly reflect 23.976 instead of 23.997 in the clip attributes list. --- client/ayon_hiero/plugins/create/create_shot_clip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ayon_hiero/plugins/create/create_shot_clip.py b/client/ayon_hiero/plugins/create/create_shot_clip.py index a0d7873..95aa552 100644 --- a/client/ayon_hiero/plugins/create/create_shot_clip.py +++ b/client/ayon_hiero/plugins/create/create_shot_clip.py @@ -18,7 +18,7 @@ "fps", items=[ {"value": "from_selection", "label": "From selection"}, - {"value": 23.997, "label": "23.976"}, + {"value": 23.976, "label": "23.976"}, {"value": 24, "label": "24"}, {"value": 25, "label": "25"}, {"value": 29.97, "label": "29.97"},