Commit 66e754819cdef1f0cf48e5c643e63e60230bf350
1 parent
a9468f6c
fix: dbclick edit text style insanity
Showing
1 changed file
with
2 additions
and
2 deletions
... | ... | @@ -372,7 +372,7 @@ Format.prototype.immediateRefresh = function () { |
372 | 372 | div.style.color = "rgb(112, 112, 112)"; |
373 | 373 | div.style.textAlign = "left"; |
374 | 374 | div.style.cursor = "default"; |
375 | - div.style.display = 'flex' | |
375 | + // div.style.display = 'flex' | |
376 | 376 | |
377 | 377 | var label = document.createElement("div"); |
378 | 378 | label.className = "geFormatSection"; |
... | ... | @@ -562,7 +562,7 @@ Format.prototype.immediateRefresh = function () { |
562 | 562 | label.style.backgroundColor = Format.inactiveTabBackgroundColor; |
563 | 563 | label.style.borderLeftWidth = "1px"; |
564 | 564 | label.style.cursor = "pointer"; |
565 | - label.style.width = containsLabel || ss.cells.length == 0 ? "50%" : "25%"; | |
565 | + label.style.width = containsLabel || ss.cells.length == 0 ? "50%" : validateHasDataSourcePanel() ? "25%" : "33.333%"; | |
566 | 566 | var label2 = label.cloneNode(false); |
567 | 567 | var label3 = label2.cloneNode(false); |
568 | 568 | var label4 = label3.cloneNode(false); | ... | ... |