From eec5c867d37bd9cb43b78fa38858c05a03bb3b09 Mon Sep 17 00:00:00 2001 From: Ray Molenkamp Date: Mon, 17 Jul 2023 13:00:30 -0600 Subject: [PATCH] Cleanup: Make format --- source/blender/compositor/operations/COM_PreviewOperation.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/blender/compositor/operations/COM_PreviewOperation.cc b/source/blender/compositor/operations/COM_PreviewOperation.cc index f2c6d4a75d4..e9aa8d2a1f7 100644 --- a/source/blender/compositor/operations/COM_PreviewOperation.cc +++ b/source/blender/compositor/operations/COM_PreviewOperation.cc @@ -43,8 +43,7 @@ void PreviewOperation::init_execution() output_image_ = preview_->ibuf; if (this->get_width() == uint(preview_->ibuf->x) && - this->get_height() == uint(preview_->ibuf->y)) - { + this->get_height() == uint(preview_->ibuf->y)) { return; } const uint size[2] = {get_width(), get_height()};