From 1370abb560f104f98d7e60fb129cab8824b3052f Mon Sep 17 00:00:00 2001 From: Mark Liversedge Date: Fri, 7 Dec 2012 22:26:50 +0000 Subject: [PATCH] Hysteresis label too long. --- src/Pages.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Pages.cpp b/src/Pages.cpp index 5f7ed68e0..4883d878e 100644 --- a/src/Pages.cpp +++ b/src/Pages.cpp @@ -185,7 +185,7 @@ GeneralPage::GeneralPage(MainWindow *main) : main(main) if (elevationHysteresis.isNull() || elevationHysteresis.toFloat() == 0.0) elevationHysteresis.setValue(3.0); // default is 1 meter - QLabel *hystlabel = new QLabel(tr("Elevation gain hysteresis (meters):")); + QLabel *hystlabel = new QLabel(tr("Elevation hysteresis (meters):")); hystedit = new QLineEdit(elevationHysteresis.toString(),this); hystedit->setInputMask("9.00");