[Libreoffice-commits] core.git: Branch 'libreoffice-5-0' - sc/source
Michael Meeks
michael.meeks at collabora.com
Thu Sep 3 07:05:03 PDT 2015
sc/source/ui/dbgui/sfiltdlg.cxx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit 0cd13904fa2c4619d21343637020f857b6c0760a
Author: Michael Meeks <michael.meeks at collabora.com>
Date: Thu Sep 3 14:21:53 2015 +0100
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 at collabora.co.uk>
Tested-by: Miklos Vajna <vmiklos at collabora.co.uk>
diff --git a/sc/source/ui/dbgui/sfiltdlg.cxx b/sc/source/ui/dbgui/sfiltdlg.cxx
index 9ae4d34..54fbad9 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();
More information about the Libreoffice-commits
mailing list