Kaydet (Commit) 0cd13904 authored tarafından Michael Meeks's avatar Michael Meeks Kaydeden (comit) Miklos Vajna

tdf#91882 - make this hideous busy-loop lower priority and less busy.

This way the rendering code can get a look in.

Change-Id: Id100031ffe1c4b415ed4ef1272a0772ec99ab4a9
Reviewed-on: https://gerrit.libreoffice.org/18301Reviewed-by: 's avatarMiklos Vajna <vmiklos@collabora.co.uk>
Tested-by: 's avatarMiklos Vajna <vmiklos@collabora.co.uk>
üst d75600ef
...@@ -87,7 +87,8 @@ ScSpecialFilterDlg::ScSpecialFilterDlg( SfxBindings* pB, SfxChildWindow* pCW, vc ...@@ -87,7 +87,8 @@ ScSpecialFilterDlg::ScSpecialFilterDlg( SfxBindings* pB, SfxChildWindow* pCW, vc
// Hack: RefInput-Kontrolle // Hack: RefInput-Kontrolle
pIdle = new Idle; pIdle = new Idle;
pIdle->SetPriority( SchedulerPriority::MEDIUM ); // 50ms warten // FIXME: this is an abomination
pIdle->SetPriority( SchedulerPriority::LOWEST );
pIdle->SetIdleHdl( LINK( this, ScSpecialFilterDlg, TimeOutHdl ) ); pIdle->SetIdleHdl( LINK( this, ScSpecialFilterDlg, TimeOutHdl ) );
pIdle->Start(); pIdle->Start();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment