Source/GSThemeDrawing.m: fix bug introduced in last commit (progress bar fills the whole area)

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@29004 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
hansfbaier 2009-11-14 03:52:59 +00:00
parent 2dd44b877b
commit 7562076324
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2009-11-14 Hans Baier <hansfbaier@googlemail.com>
* Source/GSThemeDrawing.m: fix bug introduced in last commit
(progress bar fills the whole area)
2009-11-14 Hans Baier <hansfbaier@googlemail.com>
* Headers/Additions/GNUstepGUI/GSTheme.h,

View file

@ -894,7 +894,7 @@ static NSImage *spinningImages[MaxCount];
r = NSIntersectionRect(r, rect);
if (!NSIsEmptyRect(r))
{
[self drawProgressIndicatorBarDeterminate: (NSRect)bounds];
[self drawProgressIndicatorBarDeterminate: (NSRect)r];
}
}
}