mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-04-15 05:32:21 +00:00
Changed the update signal from returnPressed() to editingFinished() for the lineEdit fields in the ride plot and power histrogram views.
This commit is contained in:
@@ -347,11 +347,11 @@ MainWindow::MainWindow(const QDir &home) :
|
||||
allPlot, SLOT(showGrid(int)));
|
||||
connect(smoothSlider, SIGNAL(valueChanged(int)),
|
||||
this, SLOT(setSmoothingFromSlider()));
|
||||
connect(smoothLineEdit, SIGNAL(returnPressed()),
|
||||
connect(smoothLineEdit, SIGNAL(editingFinished()),
|
||||
this, SLOT(setSmoothingFromLineEdit()));
|
||||
connect(binWidthSlider, SIGNAL(valueChanged(int)),
|
||||
this, SLOT(setBinWidthFromSlider()));
|
||||
connect(binWidthLineEdit, SIGNAL(returnPressed()),
|
||||
connect(binWidthLineEdit, SIGNAL(editingFinished()),
|
||||
this, SLOT(setBinWidthFromLineEdit()));
|
||||
connect(qaCPValue, SIGNAL(returnPressed()),
|
||||
this, SLOT(setQaCPFromLineEdit()));
|
||||
|
||||
Reference in New Issue
Block a user