FIX: Slightly better widths in the row headers

I'm afraid this nees to be completely redone
This commit is contained in:
Nicolás Hatcher
2024-10-08 21:00:08 +02:00
committed by Nicolás Hatcher Andrés
parent b495397b5f
commit 1131234531

View File

@@ -674,15 +674,15 @@ export default class WorksheetCanvas {
const rowHeight = this.getRowHeight(selectedSheet, row);
const selected = row >= rowStart && row <= rowEnd;
context.fillStyle = headerBorderColor;
context.fillRect(0, topLeftCornerY, headerColumnWidth, rowHeight);
context.fillRect(0.5, topLeftCornerY, headerColumnWidth, rowHeight);
context.fillStyle = selected
? headerSelectedBackground
: headerBackground;
context.fillRect(
1,
topLeftCornerY + 1,
headerColumnWidth - 2,
rowHeight - 2,
0.5,
topLeftCornerY + 0.5,
headerColumnWidth,
rowHeight - 1,
);
if (selected) {
context.fillStyle = outlineColor;