Adapt to the change to use frame instead of bounds when resizing windows.

2008-02-15  Richard Hult  <richard@imendio.com>

	* gdk/quartz/GdkQuartzView.c: Adapt to the change to use frame
	instead of bounds when resizing windows.

svn path=/trunk/; revision=19580
This commit is contained in:
Richard Hult
2008-02-15 19:06:49 +00:00
committed by Richard Hult
parent 741cd0e2ae
commit db38664512
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2008-02-15 Richard Hult <richard@imendio.com>
* gdk/quartz/GdkQuartzView.c: Adapt to the change to use frame
instead of bounds when resizing windows.
2008-02-15 Matthias Clasen <mclasen@redhat.com>
* gdk/x11/gdkkeys-x11.c:

View File

@@ -165,9 +165,9 @@
}
}
-(void)setBounds:(NSRect)bounds
-(void)setFrame:(NSRect)frame
{
[super setBounds:bounds];
[super setFrame:frame];
[self updateTrackingRect];
}