Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorNikhil Shringarpurey <Nikhil.Net>2021-11-18 18:45:10 +0300
committerHans Goudey <h.goudey@me.com>2021-11-18 18:45:10 +0300
commitdd31b8bd5068fa56d7ccc308e0d22fcce48223f1 (patch)
tree1f6aff63e971fcd1404a6f2bd3e6860bd7064731 /source
parent5816eb4c56af990ad16f81e2df2942292632f8fb (diff)
UI: Use full word "Start" instead of "Sta"
Differential Revision: https://developer.blender.org/D13098
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/space_node/drawnode.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_node/drawnode.cc b/source/blender/editors/space_node/drawnode.cc
index 63461056c8f..06f307796d8 100644
--- a/source/blender/editors/space_node/drawnode.cc
+++ b/source/blender/editors/space_node/drawnode.cc
@@ -152,7 +152,7 @@ static void node_buts_time(uiLayout *layout, bContext *UNUSED(C), PointerRNA *pt
uiTemplateCurveMapping(layout, ptr, "curve", 's', false, false, false, false);
uiLayout *row = uiLayoutRow(layout, true);
- uiItemR(row, ptr, "frame_start", DEFAULT_FLAGS, IFACE_("Sta"), ICON_NONE);
+ uiItemR(row, ptr, "frame_start", DEFAULT_FLAGS, IFACE_("Start"), ICON_NONE);
uiItemR(row, ptr, "frame_end", DEFAULT_FLAGS, IFACE_("End"), ICON_NONE);
}