From 4c433f0cc5be6285d3fa5863c3a141f3981689b1 Mon Sep 17 00:00:00 2001 From: TonitaN Date: Thu, 9 Nov 2023 02:47:25 +0300 Subject: [PATCH] (#268) Brackets balance fix --- libs/Logger/src/LogTemplate.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/Logger/src/LogTemplate.cpp b/libs/Logger/src/LogTemplate.cpp index 68398678..5796babd 100644 --- a/libs/Logger/src/LogTemplate.cpp +++ b/libs/Logger/src/LogTemplate.cpp @@ -229,7 +229,7 @@ string LogTemplate::log_plot(Plot p) { styling = p.data[0].second; legenda = p.data[0].second + " = {label in legend={text=" + decorate_element(p.data[0].second, regexstyle, none, false) - + "},\n"; + + "}},\n"; max_x = unsigned(p.data[0].first.first); max_y = unsigned(p.data[0].first.second); } @@ -241,7 +241,7 @@ string LogTemplate::log_plot(Plot p) { legenda += p.data[i].second + " = {label in legend={text=" + decorate_element(p.data[i].second, regexstyle, none, false) - + "},\n"; + + "}},\n"; } if (max_x < p.data[i].first.first) max_x = p.data[i].first.first; if (max_y < p.data[i].first.second) max_y = p.data[i].first.second;