[Libreoffice-commits] core.git: sc/source
Michael Meeks
michael.meeks at collabora.com
Thu Sep 3 06:15:09 PDT 2015
sc/source/ui/dbgui/sfiltdlg.cxx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit 0d349d96818e50f1175a5e576eb2d9d8060ab29e
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
diff --git a/sc/source/ui/dbgui/sfiltdlg.cxx b/sc/source/ui/dbgui/sfiltdlg.cxx
index a15b9a6..237ab59 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