diff --git a/nanovna.h b/nanovna.h index 6858b79..6543566 100644 --- a/nanovna.h +++ b/nanovna.h @@ -520,7 +520,7 @@ extern volatile uint8_t redraw_request; #define DEFAULT_TRACE_1_COLOR RGB565(255, 0, 0) /* RGB565(255,255, 0) */ #define DEFAULT_TRACE_2_COLOR RGB565( 0,255, 0)/* RGB565( 0,255,255) */ #define DEFAULT_TRACE_3_COLOR RGB565(255,255, 0)/* RGB565( 0,255, 0) */ -#define DEFAULT_TRIGGER_COLOR RGB565( 0,190, 0)/* RGB565( 0,190, 0) */ +#define DEFAULT_TRIGGER_COLOR RGB565( 0,0 ,255)/* RGB565( 0,190, 0) */ //#define DEFAULT_TRACE_4_COLOR RGB565(255, 0,255) #define DEFAULT_NORMAL_BAT_COLOR RGB565( 31,227, 0) #define DEFAULT_LOW_BAT_COLOR RGB565(255, 0, 0) diff --git a/sa_core.c b/sa_core.c index 35b082d..9cff78f 100644 --- a/sa_core.c +++ b/sa_core.c @@ -2421,7 +2421,7 @@ void draw_cal_status(void) // Trigger if (setting.trigger != T_AUTO) { - if (is_paused()) { + if (is_paused() || setting.trigger == T_NORMAL) { ili9341_set_foreground(BRIGHT_COLOR_GREEN); } else { ili9341_set_foreground(BRIGHT_COLOR_RED);