summaryrefslogtreecommitdiff
path: root/cgps.c
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2018-09-22 11:57:03 -0700
committerGary E. Miller <gem@rellim.com>2018-09-22 11:57:03 -0700
commit14c4475f84558d3af2425bba8a4eaaa938cb16f4 (patch)
tree6364cdab7b1a9a91d17a95ac45a3371323f1f919 /cgps.c
parent393bd659f60d1888fb180e255f7c4c37f1749822 (diff)
downloadgpsd-14c4475f84558d3af2425bba8a4eaaa938cb16f4.tar.gz
cgps: Move used up to top line.
Diffstat (limited to 'cgps.c')
-rw-r--r--cgps.c5
1 files changed, 3 insertions, 2 deletions
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;