From 87c1254e426dee0c3a464210ad6ce2bcf6d84228 Mon Sep 17 00:00:00 2001 From: "waterson%netscape.com" Date: Wed, 12 Jan 2000 05:29:24 +0000 Subject: [PATCH] Don't force the sliderframe to 'eagerly' repaint. Allow it to be redrawn with the next Compositor pass. r=hyatt --- layout/xul/base/src/nsSliderFrame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layout/xul/base/src/nsSliderFrame.cpp b/layout/xul/base/src/nsSliderFrame.cpp index aa25bc2551fd..f3e91e06b0ee 100644 --- a/layout/xul/base/src/nsSliderFrame.cpp +++ b/layout/xul/base/src/nsSliderFrame.cpp @@ -657,7 +657,7 @@ nsSliderFrame::CurrentPositionChanged(nsIPresContext* aPresContext) changeRect.UnionRect(thumbRect, newThumbRect); // redraw just the change - Invalidate(aPresContext, changeRect, PR_TRUE); + Invalidate(aPresContext, changeRect, PR_FALSE); if (mScrollbarListener) mScrollbarListener->PositionChanged(aPresContext, mCurPos, curpos);