Skip to content

Commit

Permalink
Added option to hide the extent for values that can be a mode, using …
Browse files Browse the repository at this point in the history
…check_extent state
  • Loading branch information
efosamark authored and i3sey committed Dec 14, 2023
1 parent c833409 commit 31dc79d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@ std::pair<std::string, int> dispCustData(const std::string jsonPath, std::string
name = json_string_value(j_prefix) + name;
}
output += name + ": " + std::to_string(intValue);
if (intValue < 100)
if (state == "check_extent" && intValue < 100)
extent = "";
}
}
Expand Down

0 comments on commit 31dc79d

Please sign in to comment.