mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: Update MaxTrack at launch
--HG-- branch : develop
This commit is contained in:
parent
9d3de84c38
commit
9f11987a3b
1 changed files with 2 additions and 10 deletions
|
@ -62,6 +62,8 @@ void CSoundSettingsWidget::load()
|
|||
tracks = 32;
|
||||
tracksSlider->setValue( tracks / 4 );
|
||||
|
||||
updateTracksLabel();
|
||||
|
||||
if( s.config.getString( "DriverSound" ).compare( "FMod" ) == 0 )
|
||||
fmodCheckBox->setChecked( true );
|
||||
}
|
||||
|
@ -85,16 +87,6 @@ void CSoundSettingsWidget::save()
|
|||
s.config.setString( "DriverSound", std::string( "FMod" ) );
|
||||
}
|
||||
|
||||
void CSoundSettingsWidget::changeEvent( QEvent *event )
|
||||
{
|
||||
if( event->type() == QEvent::LanguageChange )
|
||||
{
|
||||
retranslateUi( this );
|
||||
updateTracksLabel();
|
||||
}
|
||||
QWidget::changeEvent( event );
|
||||
}
|
||||
|
||||
void CSoundSettingsWidget::updateTracksLabel()
|
||||
{
|
||||
tracksLabel->setText( tr( "%1 tracks" ).arg( tracksSlider->value() * 4 ) );
|
||||
|
|
Loading…
Reference in a new issue