1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-06 14:16:32 +02:00

* Don't artificially slow down the Pipeline.

This commit is contained in:
Christian Muehlhaeuser
2011-07-22 18:31:03 +02:00
parent 66b1e21f31
commit 4a5a8e5d15

View File

@@ -209,7 +209,7 @@ Pipeline::reportResults( QID qid, const QList< result_ptr >& results )
}
else
{
new FuncTimeout( 500, boost::bind( &Pipeline::timeoutShunt, this, q ), this );
new FuncTimeout( 50, boost::bind( &Pipeline::timeoutShunt, this, q ), this );
}
}
@@ -246,7 +246,7 @@ Pipeline::shuntNext()
}
setQIDState( q, rc );
new FuncTimeout( 500, boost::bind( &Pipeline::shunt, this, q ), this );
new FuncTimeout( 50, boost::bind( &Pipeline::shunt, this, q ), this );
}