Fix: Missing space in tooltip

Fix of change from e6ccff1044

Pull Request: https://projects.blender.org/blender/blender/pulls/122434
This commit is contained in:
Iliya Katueshenock
2024-05-29 14:05:54 +02:00
committed by Hans Goudey
parent 515d8b9a0d
commit 022620b490

View File

@@ -1516,7 +1516,7 @@ static void create_inspection_string_for_geometry_info(const geo_log::GeometryIn
case bke::GeometryComponent::Type::Curve: {
const geo_log::GeometryInfoLog::CurveInfo &curve_info = *value_log.curve_info;
fmt::format_to(fmt::appender(buf),
TIP_("\u2022 Curve:{} points,{} splines"),
TIP_("\u2022 Curve: {} points,{} splines"),
to_string(curve_info.points_num),
to_string(curve_info.splines_num));
break;