To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88582
User ekato changed the following:
What |Old value |New value
================================================================================
Target milestone|OOo 3.0 |OOo 3.1
--------------------------------------------------------------------------------
------- Additional comments from [EMAIL PROTECTED] Thu May 15 11:34:31 +0000
2008 -------
(Redirected from #89502), I think it is not a conflict in key binding with "non
breaking space". Even I disabled the combination in OOo's customize dialog,
Cmd-Space won't work with DEV300_m12. The event is needed to be handled in
super class.
How about the following change to treat the both key binding not in menus like
Cmd-I and keys for input menu?
RCS file: /cvs/gsl/vcl/aqua/source/app/vclnsapp.mm,v
retrieving revision 1.3.34.4
diff -u -r1.3.34.4 vclnsapp.mm
--- vclnsapp.mm 29 Apr 2008 18:14:34 -0000 1.3.34.4
+++ vclnsapp.mm 15 May 2008 11:32:29 -0000
@@ -96,13 +96,8 @@
// the main menu just beeps for an unknown or disabled key
equivalent
// and swallows the event wholesale
NSMenu* pMainMenu = [NSApp mainMenu];
- if( pMainMenu == 0 || ! [pMainMenu performKeyEquivalent: pEvent] )
- [[pKeyWin contentView] keyDown: pEvent];
-
- // at this point either the menu has executed the accelerator
- // or we have dispatched the event
- // so no need to dispatch further
- return;
+ if( pMainMenu && [pMainMenu performKeyEquivalent: pEvent] )
+ return;
}
}
else if( eType == NSScrollWheel )
---------------------------------------------------------------------
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]