diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2015-09-03 14:21:53 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2015-09-03 14:23:49 +0100 |
commit | 0d349d96818e50f1175a5e576eb2d9d8060ab29e (patch) | |
tree | d587cc270fc4c5a0da7aff08ee31d8519d5e4cf3 | |
parent | b2ad33fd5a1ee0cd9a1e657725aedc90da659f24 (diff) |
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
-rw-r--r-- | sc/source/ui/dbgui/sfiltdlg.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/source/ui/dbgui/sfiltdlg.cxx b/sc/source/ui/dbgui/sfiltdlg.cxx index a15b9a670802..237ab594606d 100644 --- a/sc/source/ui/dbgui/sfiltdlg.cxx +++ b/sc/source/ui/dbgui/sfiltdlg.cxx @@ -87,7 +87,8 @@ ScSpecialFilterDlg::ScSpecialFilterDlg( SfxBindings* pB, SfxChildWindow* pCW, vc // Hack: RefInput-Kontrolle 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->Start(); |