making the drop feedback be 2 pixels wide, not one (r=saari).

This commit is contained in:
pinkerton%netscape.com 1999-11-02 03:55:44 +00:00
Родитель 8e90a3e9c2
Коммит 6c48babf84
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -292,7 +292,8 @@ nsToolbarFrame :: Paint ( nsIPresContext& aPresContext,
mContent->ChildCount(numChildren);
if ( numChildren ) {
aRenderingContext.SetColor(color);
aRenderingContext.DrawLine(mXDropLoc, 0, mXDropLoc, mRect.height);
nsRect dividingLine ( mXDropLoc, 0, 40, mRect.height );
aRenderingContext.FillRect(dividingLine);
}
else
aRenderingContext.DrawRect ( mRect );