From bb13db6ea189a328dd5cff52a7dfa4f72bc30ba6 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 19 Apr 2012 20:38:53 +0000 Subject: backport tentative AU GUI fix from 3.0 git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@12036 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/au_pluginui.mm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'gtk2_ardour') diff --git a/gtk2_ardour/au_pluginui.mm b/gtk2_ardour/au_pluginui.mm index 3cacb400fc..9f9a59b233 100644 --- a/gtk2_ardour/au_pluginui.mm +++ b/gtk2_ardour/au_pluginui.mm @@ -390,7 +390,11 @@ AUPluginUI::create_cocoa_view () // watch for size changes of the view [[NSNotificationCenter defaultCenter] addObserver:_notify - selector:@selector(auViewResized:) name:NSWindowDidResizeNotification + selector:@selector(auViewResized:) name:NSViewBoundsDidChangeNotification + object:au_view]; + + [[NSNotificationCenter defaultCenter] addObserver:_notify + selector:@selector(auViewResized:) name:NSViewFrameDidChangeNotification object:au_view]; // Get the size of the new AU View's frame @@ -408,6 +412,9 @@ void AUPluginUI::cocoa_view_resized () { NSRect packFrame = [au_view frame]; + prefwidth = packFrame.size.width; + prefheight = packFrame.size.height; + low_box.set_size_request (prefwidth, prefheight); } int -- cgit v1.2.3