diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-07-14 01:52:54 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-07-14 01:52:54 +0200 |
commit | a2e670df4efb219a1f92946d7a2887bdd0f88f5d (patch) | |
tree | 3d20af46f1acff27009c7fd95360f089ff1e0eab /vcl/source | |
parent | 0686abc10aa729c8768b06249dbf7e57f4e56ae5 (diff) |
UI Test idle needs to run with highes priority
regression from 00aa0892e7385cd8395dd39814077958be42e720
Change-Id: I840391573ae52be6ba4a34b2a802b637578afa40
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/uitest/uno/uiobject_uno.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/uitest/uno/uiobject_uno.cxx b/vcl/source/uitest/uno/uiobject_uno.cxx index 108a215ef326..938161a3af03 100644 --- a/vcl/source/uitest/uno/uiobject_uno.cxx +++ b/vcl/source/uitest/uno/uiobject_uno.cxx @@ -119,7 +119,7 @@ void SAL_CALL UIObjectUnoObj::executeAction(const OUString& rAction, const css:: mReady = false; auto aIdle = o3tl::make_unique<Idle>(); aIdle->SetDebugName("UI Test Idle Handler"); - aIdle->SetPriority(TaskPriority::DEFAULT); + aIdle->SetPriority(TaskPriority::HIGHEST); std::function<void()> func = [this](){ |