File tree Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Expand file tree Collapse file tree 1 file changed +0
-14
lines changed Original file line number Diff line number Diff line change @@ -216,20 +216,6 @@ public void actionPerformed(@NotNull ActionEvent e) {
216
216
}
217
217
});
218
218
219
- // F2: edit parameter name
220
- inputMap .put (KeyStroke .getKeyStroke (KeyEvent .VK_F2 , 0 ), "edit_parameter_name" );
221
- actionMap .put ("edit_parameter_name" , new AbstractAction () {
222
- @ Override
223
- public void actionPerformed (@ NotNull ActionEvent e ) {
224
- if (!myTable .isEditing ()) {
225
- int row = myTable .getSelectedRow ();
226
- if (row >= 0 && row < myTableModel .getRowCount ()) {
227
- TableUtil .editCellAt (myTable , row , MyTableModel .PARAMETER_NAME_COLUMN );
228
- }
229
- }
230
- }
231
- });
232
-
233
219
// make ENTER work when the table has focus
234
220
inputMap .put (KeyStroke .getKeyStroke (KeyEvent .VK_ENTER , 0 ), "invoke_impl" );
235
221
actionMap .put ("invoke_impl" , new AbstractAction () {
You can’t perform that action at this time.
0 commit comments