fix "copy lines up/down"

This commit is contained in:
Fabian Jakobs 2010-04-26 15:17:11 +02:00
commit c34324fe70

View file

@ -381,7 +381,7 @@ ace.Document = function(text, mode) {
this.$insertLines(firstRow, lines);
var addedRows = lastRow - firstRow + 1;
this.fireChangeEvent(firstRow, lastRow+addedRows);
this.fireChangeEvent(firstRow);
return addedRows;
};