From 0a46a061ff054262d56b84389cfeca4f8953495f Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 14:40:57 -0500 Subject: [PATCH] spelling: exclude Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/applib/ui/bitmap_layer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw/applib/ui/bitmap_layer.c b/src/fw/applib/ui/bitmap_layer.c index 5c86db72..6723cdf6 100644 --- a/src/fw/applib/ui/bitmap_layer.c +++ b/src/fw/applib/ui/bitmap_layer.c @@ -38,7 +38,7 @@ void bitmap_layer_update_proc(BitmapLayer *image, GContext* ctx) { if (!process_manager_compiled_with_legacy2_sdk()) { // Dirty workaround for calculation of offset in graphics_draw_bitmap_in_rect // and preserving state of bitmap alignment in bitmap_layer - // The previous behavior is relied on by some 2.x apps, and therefore we exlude + // The previous behavior is relied on by some 2.x apps, and therefore we exclude // the fix for apps compiled with older SDKs. See PBL-19136 for details. rect.origin.x -= image->layer.bounds.origin.x; rect.origin.y -= image->layer.bounds.origin.y;