Set thread priorty between Create() and Run()

Originally committed to SVN as r6419.
This commit is contained in:
Thomas Goyne 2012-02-01 14:23:52 +00:00
parent fbe00eabe8
commit 499a9b2869
1 changed files with 1 additions and 1 deletions

View File

@ -130,8 +130,8 @@ public:
using std::swap;
swap(cont, source);
SetPriority(WXTHREAD_MIN_PRIORITY);
Create();
SetPriority(WXTHREAD_MIN_PRIORITY);
Run();
}
};