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
diff options
context:
space:
mode:
authorYevgeny Makarov <jenkm>2020-03-19 22:29:40 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2020-03-19 23:55:17 +0300
commitc8b611b67fce813a56138af880d5695f1dcad590 (patch)
treeb982ad590084bdc1c161c72dcbc03439c74c1db7 /source/blender/editors/animation/fmodifier_ui.c
parentda019efde9b1906322374568eb26b892818637ef (diff)
Fix UI alignment in generator f-curve modifier.
Differential Revision: https://developer.blender.org/D7167
Diffstat (limited to 'source/blender/editors/animation/fmodifier_ui.c')
-rw-r--r--source/blender/editors/animation/fmodifier_ui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/animation/fmodifier_ui.c b/source/blender/editors/animation/fmodifier_ui.c
index 705351522f8..9bdfd9cfe33 100644
--- a/source/blender/editors/animation/fmodifier_ui.c
+++ b/source/blender/editors/animation/fmodifier_ui.c
@@ -274,7 +274,7 @@ static void draw_modifier__generator(uiLayout *layout,
/* 'x' param (and '+' if necessary) */
if (i == 0) {
- BLI_strncpy(xval, "", sizeof(xval));
+ BLI_strncpy(xval, " ", sizeof(xval));
}
else if (i == 1) {
BLI_strncpy(xval, "x", sizeof(xval));