mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-22 12:08:43 -04:00
Display cursor frequency only to nearest Hz.
This commit is contained in:
parent
bb756db817
commit
1069e705d2
@ -776,7 +776,7 @@ void CPlotter::mouseMoveEvent (QMouseEvent * event)
|
||||
if(lower) {
|
||||
QToolTip::showText(event->globalPos(),QString::number(ndf));
|
||||
} else {
|
||||
QToolTip::showText(event->globalPos(),QString::number(freq));
|
||||
QToolTip::showText(event->globalPos(),QString::number(freq,'f',3));
|
||||
}
|
||||
QWidget::mouseMoveEvent(event);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user