diff options
| author | Pietro Gagliardi <[email protected]> | 2014-08-05 22:02:57 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-08-05 22:02:57 -0400 |
| commit | 3dcdd055620e76a3606e6d525aed7cf86595a279 (patch) | |
| tree | c735cb4732b23aaa191891d1e594040de46c2db5 /redo/container_darwin.m | |
| parent | 46bb97cb7570fac3103144da461aa01b9b07a821 (diff) | |
Removed the NSMakeRect(0, 0, 100, 100) dummy init rect from the Mac OS X backend; NSZeroRect works fine for this after all. Thanks to jer in irc.freenode.net/#macdev.
Diffstat (limited to 'redo/container_darwin.m')
| -rw-r--r-- | redo/container_darwin.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/redo/container_darwin.m b/redo/container_darwin.m index 7129b61..e2b6113 100644 --- a/redo/container_darwin.m +++ b/redo/container_darwin.m @@ -34,7 +34,7 @@ id newContainerView(void *gocontainer) { goContainerView *c; - c = [[goContainerView alloc] initWithFrame:NSMakeRect(0, 0, 100, 100)]; + c = [[goContainerView alloc] initWithFrame:NSZeroRect]; c->gocontainer = gocontainer; return (id) c; } |
