diff --git a/src/gui/widgets/Fader.cpp b/src/gui/widgets/Fader.cpp index 20a5882203f..f74c85686ef 100644 --- a/src/gui/widgets/Fader.cpp +++ b/src/gui/widgets/Fader.cpp @@ -218,7 +218,7 @@ void Fader::mouseDoubleClickEvent( QMouseEvent* mouseEvent ) // TODO: dbV handling if( m_displayConversion ) { - newValue = QInputDialog::getDouble( this, windowTitle(), + newValue = QInputDialog::getDouble( this, tr( "Set value" ), tr( "Please enter a new value between %1 and %2:" ). arg( model()->minValue() * 100 ). arg( model()->maxValue() * 100 ), @@ -228,7 +228,7 @@ void Fader::mouseDoubleClickEvent( QMouseEvent* mouseEvent ) } else { - newValue = QInputDialog::getDouble( this, windowTitle(), + newValue = QInputDialog::getDouble( this, tr( "Set value" ), tr( "Please enter a new value between %1 and %2:" ). arg( model()->minValue() ). arg( model()->maxValue() ), diff --git a/src/gui/widgets/Knob.cpp b/src/gui/widgets/Knob.cpp index 73ef427585b..bccf3721d81 100644 --- a/src/gui/widgets/Knob.cpp +++ b/src/gui/widgets/Knob.cpp @@ -771,7 +771,7 @@ void Knob::enterValue() ConfigManager::inst()->value( "app", "displaydbfs" ).toInt() ) { new_val = QInputDialog::getDouble( - this, windowTitle(), + this, tr( "Set value" ), tr( "Please enter a new value between " "-96.0 dBFS and 6.0 dBFS:" ), 20.0 * log10( model()->getRoundedValue() / 100.0 ), @@ -788,7 +788,7 @@ void Knob::enterValue() else { new_val = QInputDialog::getDouble( - this, windowTitle(), + this, tr( "Set value" ), tr( "Please enter a new value between " "%1 and %2:" ). arg( model()->minValue() ). diff --git a/src/gui/widgets/LcdSpinBox.cpp b/src/gui/widgets/LcdSpinBox.cpp index 90a58728c0a..70eb6cf6584 100644 --- a/src/gui/widgets/LcdSpinBox.cpp +++ b/src/gui/widgets/LcdSpinBox.cpp @@ -172,7 +172,7 @@ void LcdSpinBox::enterValue() int new_val; new_val = QInputDialog::getInt( - this, windowTitle(), + this, tr( "Set value" ), tr( "Please enter a new value between %1 and %2:" ). arg( model()->minValue() ). arg( model()->maxValue() ),