On 13 April 2013 17:31, <[email protected]> wrote: > Author: pmouawad > Date: Sat Apr 13 16:31:33 2013 > New Revision: 1467656 > > URL: http://svn.apache.org/r1467656 > Log: > Bug 54581 - CTRL+F1 for function dialog open does not work for JMeter 2.9 > Bugzilla Id: 54581 > > Modified: > jmeter/trunk/src/core/org/apache/jmeter/gui/action/KeyStrokes.java > jmeter/trunk/xdocs/changes.xml > > Modified: > jmeter/trunk/src/core/org/apache/jmeter/gui/action/KeyStrokes.java > URL: > http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/gui/action/KeyStrokes.java?rev=1467656&r1=1467655&r2=1467656&view=diff > > ============================================================================== > --- jmeter/trunk/src/core/org/apache/jmeter/gui/action/KeyStrokes.java > (original) > +++ jmeter/trunk/src/core/org/apache/jmeter/gui/action/KeyStrokes.java Sat > Apr 13 16:31:33 2013 > @@ -44,7 +44,7 @@ public final class KeyStrokes { > public static final KeyStroke CLEAR = > KeyStroke.getKeyStroke(KeyEvent.VK_E, CONTROL_MASK | > InputEvent.SHIFT_DOWN_MASK); > public static final KeyStroke ESC = > KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0); > public static final KeyStroke ENTER = > KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0); > - public static final KeyStroke FUNCTIONS = > KeyStroke.getKeyStroke(KeyEvent.VK_F1, CONTROL_MASK); > + public static final KeyStroke FUNCTIONS = > KeyStroke.getKeyStroke(KeyEvent.VK_F1, CONTROL_MASK | > InputEvent.SHIFT_DOWN_MASK); > public static final KeyStroke SAVE_GRAPHICS = > KeyStroke.getKeyStroke(KeyEvent.VK_G, CONTROL_MASK); > public static final KeyStroke SAVE_GRAPHICS_ALL = > KeyStroke.getKeyStroke(KeyEvent.VK_G, CONTROL_MASK | > InputEvent.SHIFT_DOWN_MASK); > public static final KeyStroke HELP = > KeyStroke.getKeyStroke(KeyEvent.VK_H, CONTROL_MASK); > > Modified: jmeter/trunk/xdocs/changes.xml > URL: > http://svn.apache.org/viewvc/jmeter/trunk/xdocs/changes.xml?rev=1467656&r1=1467655&r2=1467656&view=diff > > ============================================================================== > --- jmeter/trunk/xdocs/changes.xml (original) > +++ jmeter/trunk/xdocs/changes.xml Sat Apr 13 16:31:33 2013 > @@ -90,6 +90,10 @@ This does not affect JMeter operation. > This results in improved throughput for intensive tests but can result in > more test data loss in case > of JMeter crash (very rare). To revert to previous behaviour set > jmeter.save.saveservice.autoflush property to true. </p> > > +<p> > +Shortcut for Function Helper Dialog is now CTRL+SHIFT+F1 (CMD + SHIFT + > F1 for Mac OS). > +</p> > + > <!-- =================== Bug fixes =================== --> > > <h2>Bug fixes</h2> > @@ -134,6 +138,7 @@ of JMeter crash (very rare). To revert t > <ul> > <li><bugzilla>54504</bugzilla> - Resource string not found: > [clipboard_node_read_error]</li> > <li><bugzilla>54538</bugzilla> - GUI: context menu is too big</li> > +<li><bugzilla>54581</bugzilla> - CTRL+F1 for function dialog open does > not work for JMeter 2.9, changed to CTRL + SHIFT + F1</li> > </ul> > > Needs more documentation, as it is an incompatible behavioural change.
> <!-- =================== Improvements =================== --> > > >
