diff options
author | Richard Linden <none@none> | 2012-02-07 12:31:48 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2012-02-07 12:31:48 -0800 |
commit | d56be1f1751f66bff09f0d223ed4712974e69e09 (patch) | |
tree | d751fa370bd2ddb7073b8c2bd960157d22f814ca /indra/llui/llmenugl.cpp | |
parent | ba32b72a9eea3ded3ee09675cc56670e618f652e (diff) |
EXP-1181 WIP as a designer I would like to specify default floater positions using realtive coordinates
refactored LLCoord code to be templated, ultimately to support arbitrary conversions
Diffstat (limited to 'indra/llui/llmenugl.cpp')
-rw-r--r-- | indra/llui/llmenugl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llmenugl.cpp b/indra/llui/llmenugl.cpp index 3e547efd97..1284231e52 100644 --- a/indra/llui/llmenugl.cpp +++ b/indra/llui/llmenugl.cpp @@ -3425,7 +3425,7 @@ void LLMenuHolderGL::draw() LLUI::pushMatrix(); { - LLUI::translate((F32)item_rect.mLeft, (F32)item_rect.mBottom, 0.f); + LLUI::translate((F32)item_rect.mLeft, (F32)item_rect.mBottom); selecteditem->getMenu()->drawBackground(selecteditem, interpolant); selecteditem->draw(); } |