diff options
-rw-r--r-- | desktop/source/deployment/gui/dp_gui_dialog2.cxx | 2 | ||||
-rw-r--r-- | vcl/source/control/prgsbar.cxx | 2 |
2 files changed, 2 insertions, 2 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 ) ); } diff --git a/vcl/source/control/prgsbar.cxx b/vcl/source/control/prgsbar.cxx index c13c14ed0be5..9f8f303f854c 100644 --- a/vcl/source/control/prgsbar.cxx +++ b/vcl/source/control/prgsbar.cxx @@ -177,7 +177,7 @@ void ProgressBar::SetValue( sal_uInt16 nNewPercent ) Update(); } } - else + else if ( mnPercent != nNewPercent ) { mnPreviousPercent = mnPercent; mnPercent = nNewPercent; |