Skip to content

Commit

Permalink
Fix typo in tr
Browse files Browse the repository at this point in the history
  • Loading branch information
shiena committed Apr 23, 2024
1 parent 785daf7 commit 6361c8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/Sources/ui_header.ts
Original file line number Diff line number Diff line change
Expand Up @@ -272,8 +272,8 @@ function ui_header_draw_tool_properties(ui: zui_t) {
zui_draw_rect(true, ui._x + 1, ui._y, (ui._w - 2) * progress, zui_ELEMENT_H(ui));
g2_set_color(0xffffffff);
zui_text(tr("Samples") + ": " + render_path_raytrace_bake_current_sample);
zui_text(tr("Rays/pixel" + ": ") + render_path_raytrace_bake_rays_pix);
zui_text(tr("Rays/second" + ": ") + render_path_raytrace_bake_rays_sec);
zui_text(tr("Rays/pixel") + ": " + render_path_raytrace_bake_rays_pix);
zui_text(tr("Rays/second") + ": " + render_path_raytrace_bake_rays_sec);
}
///end
if (context_raw.bake_type == bake_type_t.CURVATURE) {
Expand Down

0 comments on commit 6361c8b

Please sign in to comment.