Skip to content

Commit

Permalink
TEIIDDES-1986 removed redundant paste() call in StyledTextEdtior's Co…
Browse files Browse the repository at this point in the history
…ntextMenuAction.run() method
  • Loading branch information
blafond committed Dec 18, 2013
1 parent fdd9275 commit 44340d9
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,9 @@ public void run() {
} else if (this.id.equals(FIND_ID)) {
find();
} else if (this.id.equals(PASTE_ID)) {
getTextWidget().paste();
// Removed the paste() call below due an SWT change that results in it being redundant and paste being
// performed twice
// getTextWidget().paste();
} else if (this.id.equals(SELECT_ALL_ID)) {
getTextWidget().selectAll();
}
Expand Down

0 comments on commit 44340d9

Please sign in to comment.