Browse Source

fix(copy cut paste bug): bug fix

master
wbfsa 5 years ago
parent
commit
ade56d5b5f
  1. 4
      src/controllers/selection.js
  2. 2
      src/css/luckysheet-core.css
  3. 2
      src/global/refresh.js

4
src/controllers/selection.js

@ -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];

2
src/css/luckysheet-core.css

@ -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{

2
src/global/refresh.js

@ -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"]);

Loading…
Cancel
Save