From 3458396c2667634f98aeab831b97ea024a947405 Mon Sep 17 00:00:00 2001 From: Mikhail Gorbushin Date: Tue, 28 Aug 2018 16:21:42 +0300 Subject: [PATCH] add comma in widget for desktop --- qt/place_page_dialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/place_page_dialog.cpp b/qt/place_page_dialog.cpp index fa56df0530..fea804a05f 100644 --- a/qt/place_page_dialog.cpp +++ b/qt/place_page_dialog.cpp @@ -29,7 +29,7 @@ PlacePageDialog::PlacePageDialog(QWidget * parent, place_page::Info const & info grid->addWidget(new QLabel("lat lon"), row, 0); ms::LatLon const ll = info.GetLatLon(); string const llstr = - strings::to_string_dac(ll.lat, 7) + " " + strings::to_string_dac(ll.lon, 7); + strings::to_string_dac(ll.lat, 7) + ", " + strings::to_string_dac(ll.lon, 7); QLabel * label = new QLabel(llstr.c_str()); label->setTextInteractionFlags(Qt::TextSelectableByMouse); grid->addWidget(label, row++, 1);