To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=98949
------- Additional comments from [email protected] Mon Feb 16 09:35:27 +0000 2009 ------- rvojta: That depends on what you mean by that :-) If you are saying you changed the shortcut for "default formatting" to mod3-M, then yes that's what we should do. Cmd-M needs to be handled in vcl/aqua/source/app/vclnsapp.mm just where Cmd-W gets handled now. My plan was to add add soemthing like if( ([pFrame->getWindow() styleMask] & NSMiniaturizableWindowMask) ) { if( nModMask == NSCommandKeyMask && [[pEvent charactersIgnoringModifiers] isEqualToString: @"m"] ) { [pFrame->getWindow() performMiniaturize: nil]; return; } } behind the pace where Cmd-W is handled. By the way, there is a comment in there that says, Cmd-W should be handled by framework; that comment is not valid on second thought since there are cloasable (and miniaturizable) windows in OOo that don't have a menu, so currently we really need this handling in vcl. --------------------------------------------------------------------- Please do not reply to this automatically generated notification from Issue Tracker. Please log onto the website and enter your comments. http://qa.openoffice.org/issue_handling/project_issues.html#notification --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
