Use "Set value" as title for QInputDialog of some widgets.

These widgets are the Fader, Knob and LcdSpinBox.
This commit is contained in:
Hussam Eddin Alhomsi
2017-12-21 12:17:03 +03:00
parent e9b76a5178
commit 9f0f61d914
3 changed files with 5 additions and 5 deletions

View File

@@ -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() ),

View File

@@ -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() ).

View File

@@ -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() ),