1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-12-03 16:09:08 +01:00

Compare commits

...

2 Commits

2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
#include "graphicsscene.h"
bool GraphicsItem::_useStyle = true;
bool GraphicsItem::_useStyle = false;
/* Standard GraphicsScene::items() is not pixel accurate, so we use the
following function which has the same logic as used in the original

View File

@ -221,7 +221,7 @@ bool GHPParser::readF0(const char *chunk, const Header &hdr, int &time,
quint16 speed = u16(chunk + 10);
quint8 hr = chunk[12];
quint8 fia = chunk[13];
quint8 ms = chunk[16];
qint32 ms = s32(chunk + 16);
if (fia == 3) {
Trackpoint t(Coordinates(lon / 1000000.0, lat / 1000000.0));