summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorVadim ProductEngine <vsavchuk@productengine.com>2012-02-02 20:45:08 +0200
committerVadim ProductEngine <vsavchuk@productengine.com>2012-02-02 20:45:08 +0200
commit9721e4f78362da8fce1c66762290ff72df06441c (patch)
tree7f332983b57f42eb2d5cb0b07108b3f6c43ffe89 /indra
parent8d6665b5c2ac1d42d72dab025623d3ae14291ccb (diff)
Removing a call to llround() per Richard.
Diffstat (limited to 'indra')
-rw-r--r--indra/llui/lllineeditor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/lllineeditor.cpp b/indra/llui/lllineeditor.cpp
index d600f58b96..7e84814c51 100644
--- a/indra/llui/lllineeditor.cpp
+++ b/indra/llui/lllineeditor.cpp
@@ -1630,7 +1630,7 @@ void LLLineEditor::draw()
LLRect background( 0, getRect().getHeight(), getRect().getWidth(), 0 );
background.stretch( -mBorderThickness );
- S32 lineeditor_v_pad = llround(((F32)background.getHeight() - mGLFont->getLineHeight())/2);
+ S32 lineeditor_v_pad = (background.getHeight() - mGLFont->getLineHeight()) / 2;
drawBackground();