From a220b847d4193e5622e66142dc21b6c1c2314894 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Monta=C3=B1ana=20G=C3=B3mez?= Date: Fri, 19 Jan 2024 12:40:24 +0100 Subject: [PATCH] Fix column width in excel friedman test --- src/Platform/modules/BestResultsExcel.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Platform/modules/BestResultsExcel.cc b/src/Platform/modules/BestResultsExcel.cc index 356c062..05ab3f8 100644 --- a/src/Platform/modules/BestResultsExcel.cc +++ b/src/Platform/modules/BestResultsExcel.cc @@ -297,7 +297,7 @@ namespace platform { row++; } // set column width for the 5th and the 7th column - worksheet_set_column(worksheet, 4, 4, 10, NULL); - worksheet_set_column(worksheet, 6, 6, 10, NULL); + worksheet_set_column(worksheet, 4, 5, 10, NULL); + worksheet_set_column(worksheet, 6, 7, 10, NULL); } } \ No newline at end of file