forked from AuroraMiddleware/gtk
Set frame, not bounds when resizing to be consistent and to avoid
2008-02-14 Richard Hult <richard@imendio.com> * gdk/quartz/GdkQuartzWindow.c: Set frame, not bounds when resizing to be consistent and to avoid introducing an internal transform in the view. svn path=/trunk/; revision=19566
This commit is contained in:
parent
5737e8f78f
commit
59687608aa
@ -1,3 +1,9 @@
|
|||||||
|
2008-02-14 Richard Hult <richard@imendio.com>
|
||||||
|
|
||||||
|
* gdk/quartz/GdkQuartzWindow.c: Set frame, not bounds when
|
||||||
|
resizing to be consistent and to avoid introducing an internal
|
||||||
|
transform in the view.
|
||||||
|
|
||||||
2008-02-14 Richard Hult <richard@imendio.com>
|
2008-02-14 Richard Hult <richard@imendio.com>
|
||||||
|
|
||||||
* gdk/quartz/gdkdisplay-quartz.c: (gdk_display_open): Coding style
|
* gdk/quartz/gdkdisplay-quartz.c: (gdk_display_open): Coding style
|
||||||
|
@ -169,7 +169,7 @@
|
|||||||
impl->width = content_rect.size.width;
|
impl->width = content_rect.size.width;
|
||||||
impl->height = content_rect.size.height;
|
impl->height = content_rect.size.height;
|
||||||
|
|
||||||
[[self contentView] setBounds:NSMakeRect (0, 0, impl->width, impl->height)];
|
[[self contentView] setFrame:NSMakeRect (0, 0, impl->width, impl->height)];
|
||||||
|
|
||||||
/* Synthesize a configure event */
|
/* Synthesize a configure event */
|
||||||
event = gdk_event_new (GDK_CONFIGURE);
|
event = gdk_event_new (GDK_CONFIGURE);
|
||||||
|
Loading…
Reference in New Issue
Block a user