Cleanup: Remove else after return in grease_pencil_io.cc

This commit is contained in:
Hans Goudey
2025-08-28 12:03:42 -04:00
committed by Hans Goudey
parent ea47231a7b
commit d74c033a9d

View File

@@ -567,9 +567,7 @@ std::string GreasePencilExporter::coord_to_svg_string(const float2 &screen_co) c
if (camera_persmat_) {
return fmt::format("{},{}", screen_co.x, camera_rect_.size().y - screen_co.y);
}
else {
return fmt::format("{},{}", screen_co.x, screen_rect_.size().y - screen_co.y);
return fmt::format("{},{}", screen_co.x, screen_rect_.size().y - screen_co.y);
}
}
} // namespace blender::io::grease_pencil