Skip to content

Commit

Permalink
Update qgsgpsinformationwidget.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
bettellam authored Aug 10, 2024
1 parent 4959a47 commit 8dff545
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/gps/qgsgpsinformationwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -424,17 +424,17 @@ void QgsGpsInformationWidget::displayGPSInformation( const QgsGpsInformation &in
if ( currentInfo.satType == 'P' ) {
symbolStyle = QwtSymbol::Ellipse; // GPS;
QBrush symbolBrush( Qt::limegreen );
myColor = Qt::limegreen;
myColor = Qt::QColor( 50 , 205 , 20 ); //Qt::limegreen;
}
else if ( currentInfo.satType == 'L' ) {
symbolStyle = QwtSymbol::Rect; // GLONASS;
QBrush symbolBrush( Qt::orange );
myColor = Qt::orange;
myColor = Qt::QColor( 255 , 165 , 0 ); //Qt::orange;
}
else if ( currentInfo.satType == 'B' ) {
symbolStyle = QwtSymbol::Diamond; // BEIDOU;
QBrush symbolBrush( Qt::purple );
myColor = Qt::purple;
myColor = Qt::QColor( 128 , 0 , 128 ); //Qt::purple;
}
else if ( currentInfo.satType == 'A' ) {
symbolStyle = QwtSymbol::Triangle; //GALILEO
Expand Down

0 comments on commit 8dff545

Please sign in to comment.