diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2016-01-13 14:41:53 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2016-01-13 14:45:01 +0000 |
commit | 5077a1f66411efd78110206343b07fa6ff8d58b0 (patch) | |
tree | f24a4285cb4929fee80913a9be167d876a725e97 /desktop | |
parent | a6d1b4b17a74bd2af03cd090b80c98bc9a275aa3 (diff) |
tdf#95573 - stop (crazy) busy loop from blocking rendering.
Attempt to blind fix extensions problem on OS/X. Some quite
amazing code there. To avoid each busy idle from invalidating,
avoid progress bar invalidation for the same %age being set.
Change-Id: If96f8615c0ea712681e008972b3abe1c070a3227
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/deployment/gui/dp_gui_dialog2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/deployment/gui/dp_gui_dialog2.cxx b/desktop/source/deployment/gui/dp_gui_dialog2.cxx index e25a28e8eeab..2f25386dbca7 100644 --- a/desktop/source/deployment/gui/dp_gui_dialog2.cxx +++ b/desktop/source/deployment/gui/dp_gui_dialog2.cxx @@ -1198,7 +1198,7 @@ UpdateRequiredDialog::UpdateRequiredDialog(vcl::Window *pParent, TheExtensionMan m_pUpdateBtn->Enable( false ); m_pCloseBtn->GrabFocus(); - m_aIdle.SetPriority( SchedulerPriority::MEDIUM ); + m_aIdle.SetPriority( SchedulerPriority::LOWEST ); m_aIdle.SetIdleHdl( LINK( this, UpdateRequiredDialog, TimeOutHdl ) ); } |