mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-11 18:46:41 -04:00
made quality-settings (internal processing samplerate, interpolation and so on) independent of audio-devices (final output) and added new qualitySettings-structure to mixer - might be still buggy and HQ-mode is currently not working, this is going to be fixed tomorrow, anyways important preparation for new project-export-dialog
git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@957 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
@@ -162,7 +162,7 @@ void bbEditor::removeBBView( int _bb )
|
||||
|
||||
void bbEditor::play( void )
|
||||
{
|
||||
if( engine::getSong()->playing() )
|
||||
if( engine::getSong()->isPlaying() )
|
||||
{
|
||||
if( engine::getSong()->playMode() != song::Mode_PlayBB )
|
||||
{
|
||||
@@ -178,7 +178,7 @@ void bbEditor::play( void )
|
||||
"play" ) );
|
||||
}
|
||||
}
|
||||
else if( engine::getSong()->paused() )
|
||||
else if( engine::getSong()->isPaused() )
|
||||
{
|
||||
engine::getSong()->resumeFromPause();
|
||||
m_playButton->setIcon( embed::getIconPixmap( "pause" ) );
|
||||
@@ -217,7 +217,7 @@ void bbEditor::keyPressEvent( QKeyEvent * _ke )
|
||||
{
|
||||
if ( _ke->key() == Qt::Key_Space )
|
||||
{
|
||||
if( engine::getSong()->playing() )
|
||||
if( engine::getSong()->isPlaying() )
|
||||
{
|
||||
stop();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user