File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -215,7 +215,7 @@ QfPaneDrawer {
215215 }
216216
217217 MenuItem {
218- text: bookmarkList .multiSelection ? qsTr (' Export Selected Bookmark(s)' ) : qsTr (' Export All Bookmarks' )
218+ text: bookmarkList .multiSelection ? qsTr (' Export Selected Bookmark(s)' ) : qsTr (' Export All User Bookmarks' )
219219 icon .source : Theme .getThemeVectorIcon (" ic_download_white_24dp" )
220220 enabled: ! bookmarkList .multiSelection || (bookmarkList .model && bookmarkList .model .selectedCount > 0 )
221221
Original file line number Diff line number Diff line change @@ -213,9 +213,9 @@ QfPopup {
213213 bgcolor: " transparent"
214214
215215 onClicked: {
216- var point = bookmarkModel .getBookmarkPoint (bookmarkProperties .bookmarkId );
217- var crs = bookmarkModel .getBookmarkCrs (bookmarkProperties .bookmarkId );
218- var coordinates = StringUtils .pointInformation (point, crs);
216+ const point = bookmarkModel .getBookmarkPoint (bookmarkProperties .bookmarkId );
217+ const crs = bookmarkModel .getBookmarkCrs (bookmarkProperties .bookmarkId );
218+ const coordinates = StringUtils .pointInformation (point, crs);
219219 platformUtilities .copyTextToClipboard (nameField .text + ' \n ' + coordinates);
220220 displayToast (qsTr (' Bookmark details copied to clipboard' ));
221221 }
You can’t perform that action at this time.
0 commit comments