http://bugzilla.novell.com/show_bug.cgi?id=616432

http://bugzilla.novell.com/show_bug.cgi?id=616432#c1


Thomas Goldstein <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from Thomas Goldstein <[email protected]> 2010-06-22 22:31:09 UTC ---
I just had a quick look at this. The problem lies in ThemeWin32Classic.cs, line
2795:

control.SmallImageList.Draw (dc, new Point (x_origin, rect.Y), image_index);

I think the fix would be:

Defining image_height right after image_width (line 2777):
int image_height = control.SmallImageList.ImageSize.Height;

Then replacing the other line with:
control.SmallImageList.Draw (dc, new Point (x_origin, rect.Y + (rect.Height -
image_height) / 2), image_index);

-- 
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to