Skip to content

Commit

Permalink
(#268) Brackets balance fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TonitaN committed Nov 8, 2023
1 parent 6fcbc76 commit 4c433f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/Logger/src/LogTemplate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand All @@ -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;
Expand Down

0 comments on commit 4c433f0

Please sign in to comment.