From 85fcdb880040c582180d0720d67f8c7c0f24ca2a Mon Sep 17 00:00:00 2001 From: grimsace Date: Fri, 20 Mar 2026 00:29:51 -0500 Subject: [PATCH] fixed semantic error --- src/exporter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exporter.rs b/src/exporter.rs index 6eb23d0..5b2895d 100644 --- a/src/exporter.rs +++ b/src/exporter.rs @@ -432,7 +432,7 @@ fn raster_mask_target_size(settings: &UiSettings, src_w: u32, src_h: u32) -> (u3 // Compute the output raster size while honoring aspect settings. fn raster_target_size(settings: &UiSettings) -> (u32, u32) { - let mut width = settings.export_width.clamp(1, 10_000); + let width = settings.export_width.clamp(1, 10_000); let mut height = settings.export_height.clamp(1, 10_000); if !settings.allow_export_aspect_change {