DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=38031>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=38031 Summary: Missing 'E' mnemonic on Edit menu - patch available. Product: JMeter Version: Nightly (Please specify date) Platform: All OS/Version: All Status: NEW Keywords: PatchAvailable Severity: trivial Priority: P2 Component: Main AssignedTo: [email protected] ReportedBy: [EMAIL PROTECTED] Hi, Here's an easy one for you :-) This is from revision 358880, retrieved on 19-Dec-2005. Also in your 2.1.1 production release. Index: src/core/org/apache/jmeter/gui/util/JMeterMenuBar.java =============================================================== ==== --- src/core/org/apache/jmeter/gui/util/JMeterMenuBar.java (revision 358868) +++ src/core/org/apache/jmeter/gui/util/JMeterMenuBar.java (working copy) @@ -409,6 +409,7 @@ private void makeEditMenu() { // EDIT MENU editMenu = new JMenu(JMeterUtils.getResString("edit")); + editMenu.setMnemonic('E'); // From the Java Look and Feel Guidelines: If all items in a menu // are disabled, then disable the menu. Makes sense. editMenu.setEnabled(false); -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
