1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-20 15:41:18 +01:00

Implement suggested fix for http://bugzilla.audacityteam.org/show_bug.cgi?id=734. Tested on Windows and Steve tested on Linux.

This commit is contained in:
lllucius
2014-07-12 14:29:54 +00:00
parent 96324b5520
commit fe241e4d23

View File

@@ -1129,7 +1129,14 @@ void EffectNyquist::OSCallback()
nyx_continue(); nyx_continue();
} }
wxYieldIfNeeded(); // LLL: STF figured out that yielding while the effect is being applied
// produces an EXTREME slowdown. It appears that yielding it not
// really necessary, so commenting out for now.
//
// Possible issues that may result is the ProgressDialog may
// not get refreshed or may not respond to button clicks...
// just something to watch for.
//wxYieldIfNeeded();
} }
/**********************************************************/ /**********************************************************/