Skip to content

Commit 7746644

Browse files
fix default row height and column width value
1 parent b75dcda commit 7746644

File tree

1 file changed

+2
-2
lines changed
  • libxlsxwriter/src/worksheet

1 file changed

+2
-2
lines changed

libxlsxwriter/src/worksheet/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,9 +353,9 @@ impl CommentOptions {
353353
}
354354
}
355355

356-
pub const LXW_DEF_ROW_HEIGHT: f64 = 8.43;
356+
pub const LXW_DEF_ROW_HEIGHT: f64 = 15.0;
357357
pub const LXW_DEF_ROW_HEIGHT_PIXELS: u32 = 20;
358-
pub const LXW_DEF_COL_WIDTH: f64 = 15.0;
358+
pub const LXW_DEF_COL_WIDTH: f64 = 8.43;
359359
pub const LXW_DEF_COL_WIDTH_PIXELS: u32 = 64;
360360

361361
/// The Worksheet object represents an Excel worksheet. It handles operations such as writing data to cells or formatting worksheet layout.

0 commit comments

Comments
 (0)