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:
authorTon Roosendaal <ton@blender.org>2003-09-22 15:44:36 +0400
committerTon Roosendaal <ton@blender.org>2003-09-22 15:44:36 +0400
commitd72fe1af415982f92ed0587a80c8257e5c634d8a (patch)
treedbe9d859fb240b030bb8f19122eb3c5de9932169
parentb5450f08155ab50ce4b7a74e1d7cdae69a3ef899 (diff)
- fixed stringlength for plugin path button, max 160 chars now.
-rw-r--r--source/blender/src/buttons.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/buttons.c b/source/blender/src/buttons.c
index eccfc52b342..d7071430846 100644
--- a/source/blender/src/buttons.c
+++ b/source/blender/src/buttons.c
@@ -3908,7 +3908,7 @@ void texbuts(void)
uiDefBut(block, varstr->type, B_PLUGBUT+a, varstr->name, (short)xco,(short)yco,137,19, &(pit->data[a]), varstr->min, varstr->max, 100, 0, varstr->tip);
}
}
- uiDefBut(block, TEX, B_NAMEPLUGIN, "", 520,137,412,24, pit->name, 0.0, 79.0, 0, 0, "Browse");
+ uiDefBut(block, TEX, B_NAMEPLUGIN, "", 520,137,412,24, pit->name, 0.0, 159.0, 0, 0, "Browse");
}
uiBlockSetCol(block, BUTSALMON);
@@ -7390,7 +7390,7 @@ void drawbutspace(ScrArea *sa, void *spacedata)
uiClearButLock();
test_butspace();
-
+
curarea->win_swap= WIN_BACK_OK;
}