From 2a909727c013b854426ed320234d347db3519e47 Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Tue, 21 Jul 2026 21:54:53 -0400 Subject: [PATCH] Do not set background color for b&w watch icons --- src/c/neat_bar.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/c/neat_bar.c b/src/c/neat_bar.c index bd8ff89..4e8d75a 100644 --- a/src/c/neat_bar.c +++ b/src/c/neat_bar.c @@ -315,7 +315,7 @@ void neat_bar_layer_set_background_color(NeatBarLayer *neat_bar, GColor backgrou layer_mark_dirty(neat_bar->main_layer); } -// default: 0 +// default: DEFAULT_SPREAD void neat_bar_layer_set_icons_spread(NeatBarLayer *neat_bar, int8_t spread) { if (spread == neat_bar->icons_spread) { return; @@ -380,8 +380,6 @@ void neat_bar_layer_set_icon(NeatBarLayer *neat_bar, ButtonId button_id, GBitmap bitmap_layer_set_bitmap(current_bitmap_layer, icon); #if PBL_COLOR bitmap_layer_set_compositing_mode(current_bitmap_layer, GCompOpSet); -#else - bitmap_layer_set_background_color(current_bitmap_layer, neat_bar->background_color); #endif }