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:
authorMatt Ebb <matt@mke3.net>2004-08-02 17:06:09 +0400
committerMatt Ebb <matt@mke3.net>2004-08-02 17:06:09 +0400
commit060db9e94a526898048cef8cd9df6d3b1ab250a3 (patch)
tree7f66fda288ae786626111da8bed8d4f1976c69f2 /source/blender/src/drawview.c
parentd3a9eae00dfe7939d0692cda3aa14d57eb89b1aa (diff)
Smallest commit ever: Make the OB: text entry field in
transform properties floating panel maximum 19 characters rather than 18, to bring it in line with the similar field in buttons_editing.c
Diffstat (limited to 'source/blender/src/drawview.c')
-rw-r--r--source/blender/src/drawview.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/drawview.c b/source/blender/src/drawview.c
index 39f76172c5c..7df8900f0e1 100644
--- a/source/blender/src/drawview.c
+++ b/source/blender/src/drawview.c
@@ -1499,7 +1499,7 @@ static void view3d_panel_object(short cntrl) // VIEW3D_HANDLER_OBJECT
if(uiNewPanel(curarea, block, "Transform Properties", "View3d", 10, 230, 318, 204)==0) return;
if((G.f & (G_VERTEXPAINT|G_TEXTUREPAINT))==0) {
- uiDefBut(block, TEX, B_IDNAME, "OB: ", 10,180,140,20, ob->id.name+2, 0.0, 18.0, 0, 0, "");
+ uiDefBut(block, TEX, B_IDNAME, "OB: ", 10,180,140,20, ob->id.name+2, 0.0, 19.0, 0, 0, "");
uiDefIDPoinBut(block, test_obpoin_but, B_OBJECTPANELPARENT, "Par:", 160, 180, 140, 20, &ob->parent, "Parent Object");
}