From 14c4475f84558d3af2425bba8a4eaaa938cb16f4 Mon Sep 17 00:00:00 2001 From: "Gary E. Miller" Date: Sat, 22 Sep 2018 11:57:03 -0700 Subject: cgps: Move used up to top line. --- cgps.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'cgps.c') diff --git a/cgps.c b/cgps.c index 2b491c45..e4a14cb5 100644 --- a/cgps.c +++ b/cgps.c @@ -537,8 +537,9 @@ static void update_gps_panel(struct gps_data_t *gpsdata, char *message) * xgps.c. Note that the satellite list may be truncated based on * available screen size, or may only show satellites used for the * fix. */ - (void)mvwprintw(satellites, 0, 27, "Seen %2d", gpsdata->satellites_visible); - (void)mvwprintw(satellites, 1, 32, "%2d", gpsdata->satellites_used); + (void)mvwprintw(satellites, 0, 19, "Seen %2d/Used %2d", + gpsdata->satellites_visible, + gpsdata->satellites_used); if (gpsdata->satellites_visible != 0) { int sat_no; -- cgit v1.2.1