From 52ab7fa2b7d4b55175e213439c03752ba1e72b3f Mon Sep 17 00:00:00 2001 From: DiSlord Date: Mon, 20 Jul 2020 00:12:32 +0300 Subject: [PATCH] Use radio button for points count --- ui_sa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui_sa.c b/ui_sa.c index c49940e..154bbad 100644 --- a/ui_sa.c +++ b/ui_sa.c @@ -1182,7 +1182,7 @@ static const uint16_t points_setting[] = {145, 290, -1}; static UI_FUNCTION_ADV_CALLBACK(menu_points_acb){ (void)item; if(b){ - b->icon = points_setting[data] == sweep_points ? BUTTON_ICON_CHECK : BUTTON_ICON_NOCHECK; + b->icon = points_setting[data] == sweep_points ? BUTTON_ICON_GROUP_CHECKED : BUTTON_ICON_GROUP; return; } set_sweep_points(points_setting[data]);