From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: Date: Thu, 3 Jul 2008 10:05:32 +0900 From: underspecified To: "Fans of the OS Plan 9 from Bell Labs" <9fans@9fans.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: [9fans] 9vx 0.12 OSX covers dock when maximized Topicbox-Message-UUID: d839cfec-ead3-11e9-9d60-3106f5b1d025 Greetings, In OS-X 9vx covers the dock when maximized. The fix is simple; don't create a special window group for the application: diff -r ca5b26cbe43a src/9vx/osx/screen.c --- a/src/9vx/osx/screen.c Tue Jul 01 17:27:41 2008 -0400 +++ b/src/9vx/osx/screen.c Thu Jul 03 09:59:35 2008 +0900 @@ -126,8 +126,6 @@ or.bottom = Dy(osx.fullscreenr) - 200; or.right = Dx(osx.fullscreenr); CreateNewWindow(kDocumentWindowClass, WindowAttrs, &or, &osx.window); - CreateWindowGroup(0, &osx.wingroup); - SetWindowGroup(osx.window, osx.wingroup); SetWindowTitleWithCFString(osx.window, CFSTR("Plan 9 VX")); seticon(); --underspecified