From 8514a0c15202ebf1cba844ac18e7003b5bc763f1 Mon Sep 17 00:00:00 2001 From: Javanaut Date: Sun, 2 Feb 2025 17:01:22 +0100 Subject: [PATCH] ff --- src/ffx/ffx_controller.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ffx/ffx_controller.py b/src/ffx/ffx_controller.py index d142860..4d78ae6 100644 --- a/src/ffx/ffx_controller.py +++ b/src/ffx/ffx_controller.py @@ -197,10 +197,10 @@ class FfxController(): if cropArguments: cropParams = (f"crop=" - + f"{CropFilter.OUTPUT_WIDTH_KEY}" - + f":{CropFilter.OUTPUT_HEIGHT_KEY}" - + f":{CropFilter.OFFSET_X_KEY}" - + f":{CropFilter.OFFSET_Y_KEY}") + + f"{cropArguments[CropFilter.OUTPUT_WIDTH_KEY]}" + + f":{cropArguments[CropFilter.OUTPUT_HEIGHT_KEY]}" + + f":{cropArguments[CropFilter.OFFSET_X_KEY]}" + + f":{cropArguments[CropFilter.OFFSET_Y_KEY]}") filterParamTokens.append(cropParams)