mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-14 16:39:57 +00:00
Let user disable hovering on allplot
.. it irks some people.
This commit is contained in:
@@ -6471,8 +6471,8 @@ AllPlot::pointHover(QwtPlotCurve *curve, int index)
|
||||
//replot();
|
||||
}
|
||||
|
||||
// we have intervals selected so no need to mouse over
|
||||
if (context->athlete->intervalWidget->selectedItems().count()) return;
|
||||
// we don't want hoveing or we have intervals selected so no need to mouse over
|
||||
if (!window->showHover->isChecked() || context->athlete->intervalWidget->selectedItems().count()) return;
|
||||
|
||||
if (!context->isCompareIntervals && rideItem && rideItem->ride()) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user