diff options
author | David Robillard <d@drobilla.net> | 2020-03-14 17:17:57 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-03-15 10:24:47 +0100 |
commit | 02d565da853b6c7990c5944306b07e0dac69a1f6 (patch) | |
tree | f6560013ea4699e607b160192b36d1c95022f4dc /pugl/detail/mac.m | |
parent | 919dd0200074cbaac655ee2cb3f8767592f80514 (diff) | |
download | pugl-02d565da853b6c7990c5944306b07e0dac69a1f6.tar.gz pugl-02d565da853b6c7990c5944306b07e0dac69a1f6.tar.bz2 pugl-02d565da853b6c7990c5944306b07e0dac69a1f6.zip |
Remove backend resize method
Diffstat (limited to 'pugl/detail/mac.m')
-rw-r--r-- | pugl/detail/mac.m | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/pugl/detail/mac.m b/pugl/detail/mac.m index 837d3cc..2928951 100644 --- a/pugl/detail/mac.m +++ b/pugl/detail/mac.m @@ -117,14 +117,6 @@ updateViewRect(PuglView* view) @implementation PuglWrapperView -- (void) resizeWithOldSuperviewSize:(NSSize)oldSize -{ - [super resizeWithOldSuperviewSize:oldSize]; - - const NSRect bounds = [self bounds]; - puglview->backend->resize(puglview, bounds.size.width, bounds.size.height); -} - - (void) dispatchExpose:(NSRect)rect { if (reshaped) { |