summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTeemu Ikonen <tpikonen@mailbox.org>2023-07-08 18:58:07 +0300
committerTeemu Ikonen <tpikonen@mailbox.org>2023-07-17 13:28:49 +0000
commit89511c08eba50135a41f03e543b0fb9c531c376e (patch)
tree6a4f351a429e290fdb35263f45c01396ffac4744
parent73d1af21685c9a3d457276d2f33a2a093d8f3bd8 (diff)
location: Correctly describe combined GGA+RMC locations
-rw-r--r--src/gclue-location.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gclue-location.c b/src/gclue-location.c
index e3f55fc..9530d27 100644
--- a/src/gclue-location.c
+++ b/src/gclue-location.c
@@ -748,6 +748,7 @@ gclue_location_create_from_nmeas (const char *nmeas[],
(gga_loc, gclue_location_get_speed(rmc_loc));
gclue_location_set_heading
(gga_loc, gclue_location_get_heading(rmc_loc));
+ g_object_set (gga_loc, "description", "GPS GGA+RMC", NULL);
g_object_unref (rmc_loc);
return gga_loc;