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