diff options
author | Michael Meeks <michael.meeks@collabora.com> | 2015-09-03 14:21:53 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-09-03 14:04:42 +0000 |
commit | 0cd13904fa2c4619d21343637020f857b6c0760a (patch) | |
tree | 3e358c43f85abf4a4a96fe84561f5cc588166fd7 | |
parent | d75600ef299b2a8c7b269936acebe646a16e62a5 (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
Reviewed-on: https://gerrit.libreoffice.org/18301
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Tested-by: Miklos Vajna <vmiklos@collabora.co.uk>
-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 9ae4d34a1e85..54fbad9aac9b 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(); |