Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

Commit

Permalink
fix(copy cut paste bug): bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DR-Univer committed Oct 1, 2020
1 parent d61d3a0 commit ade56d5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/controllers/selection.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ const selection = {
d = editor.deepCopyFlowData(Store.flowdata);
let colgroup = "";

rowIndexArr = rowIndexArr.sort();
colIndexArr = colIndexArr.sort();
// rowIndexArr = rowIndexArr.sort();
// colIndexArr = colIndexArr.sort();

for (let i = 0; i < rowIndexArr.length; i++) {
let r = rowIndexArr[i];
Expand Down
2 changes: 2 additions & 0 deletions src/css/luckysheet-core.css
Original file line number Diff line number Diff line change
Expand Up @@ -7020,12 +7020,14 @@ fieldset[disabled] .btn-danger.focus {
}
#luckysheet-modal-dialog-activeImage, #luckysheet-modal-dialog-cropping{
background: none;
box-shadow: none;
}

.luckysheet-modal-dialog-image {
border: none;
box-shadow:none;
background: none;
box-shadow:none;
}

.luckysheet-modal-dialog-image .luckysheet-modal-dialog-content, #luckysheet-modal-dialog-activeImage .luckysheet-modal-dialog-content{
Expand Down
2 changes: 1 addition & 1 deletion src/global/refresh.js
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ function jfrefreshgrid_pastcut(source, target, RowlChange){
Store.visibledatarow.push(Store.rh_height);//行的临时长度分布
}
Store.rh_height += 110;
sheetmanage.showSheet();
// sheetmanage.showSheet();

if(Store.currentSheetIndex == source["sheetIndex"]){
let rowlenArr = computeRowlenArr(target["curData"].length, target["curConfig"]);
Expand Down

0 comments on commit ade56d5

Please sign in to comment.