Skip to content

Commit

Permalink
Merge pull request #11 from valyo/2.5.x
Browse files Browse the repository at this point in the history
2.5.x Fix Bug 3193 - Pasting multiple lines in JavaScript/R console…
  • Loading branch information
goglepox committed May 30, 2012
2 parents 1b6730a + b272ebb commit bf64132
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -206,7 +206,7 @@ else if (Character.toLowerCase(e.character) == 'c'
public void keyReleased(KeyEvent _) { }
});

input = new Text(parent, SWT.SINGLE | SWT.BORDER);
input = new Text(parent, SWT.MULTI | SWT.BORDER | SWT.V_SCROLL);
input.setFont(JFaceResources.getTextFont());
input.addKeyListener( new KeyListener() {
public void keyPressed(KeyEvent e) { handleKey(e); }
Expand Down

0 comments on commit bf64132

Please sign in to comment.