diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2016-01-13 14:41:53 +0000 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-01-25 17:13:37 +0000 |
commit | a4dfb5a24ea16c6071dc40aa7321a5118745cb4b (patch) | |
tree | 8be8d56bd75586513111344ac14d0e7dc6cce6d4 /desktop | |
parent | f3dbf9cbba6e1d5917de9793a95eced4182777b8 (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
Reviewed-on: https://gerrit.libreoffice.org/21436
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
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 5c2e7f323c65..38004c537f38 100644 --- a/desktop/source/deployment/gui/dp_gui_dialog2.cxx +++ b/desktop/source/deployment/gui/dp_gui_dialog2.cxx @@ -1199,7 +1199,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 ) ); } |