* NSScroller.m in trackScrollButtons method added code to highlight cell

prior to calling trackMouse.  In keeping with new behaviour of NSCell.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@2867 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Felipe A. Rodriguez 1998-07-28 09:30:51 +00:00
parent b8c99d7204
commit b2a8e958e6
4 changed files with 17 additions and 9 deletions

View file

@ -141,8 +141,7 @@
rect.origin = documentFrame.origin;
rect.size.width = MAX(documentFrame.size.width, clipViewBounds.size.width);
rect.size.height = MAX(documentFrame.size.height,
clipViewBounds.size.height);
rect.size.height = MAX(documentFrame.size.height,clipViewBounds.size.height);
return rect;
}