Skip to content

Commit

Permalink
Merge branch 'skitt_507' into testing_0.40
Browse files Browse the repository at this point in the history
  • Loading branch information
foldynl committed Nov 22, 2024
2 parents d58547e + fbd4270 commit 2a2a2e8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ui/BandmapWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,9 @@ void BandmapWidget::updateStations()
QString unit;
unsigned char decP;
double spotFreq = Data::MHz2UserFriendlyFreq(lower.key(), unit, decP);
text->setToolTip(QString("<b>%1</b><br/>%2 %3; %4<br/>%5").arg(callsignTmp,
const QString &spotterCallsign = lower.value().spotter;
text->setToolTip(QString("<b>%1</b> de %2<br/>%3 %4; %5<br/>%6").arg(callsignTmp,
spotterCallsign,
QString::number(spotFreq, 'f', decP),
unit,
lower.value().modeGroupString,
Expand Down

0 comments on commit 2a2a2e8

Please sign in to comment.