aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llui/llmenugl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llui/llmenugl.cpp')
-rw-r--r--linden/indra/llui/llmenugl.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/linden/indra/llui/llmenugl.cpp b/linden/indra/llui/llmenugl.cpp
index 24cc47e..4766267 100644
--- a/linden/indra/llui/llmenugl.cpp
+++ b/linden/indra/llui/llmenugl.cpp
@@ -1309,6 +1309,7 @@ void LLMenuItemBranchGL::openMenu()
1309 } 1309 }
1310 mBranch->translate( delta_x, delta_y ); 1310 mBranch->translate( delta_x, delta_y );
1311 mBranch->setVisible( TRUE ); 1311 mBranch->setVisible( TRUE );
1312 mBranch->getParent()->sendChildToFront(mBranch);
1312 } 1313 }
1313} 1314}
1314 1315
@@ -1427,6 +1428,7 @@ void LLMenuItemBranchDownGL::openMenu( void )
1427 1428
1428 setHighlight(TRUE); 1429 setHighlight(TRUE);
1429 branch->setVisible( TRUE ); 1430 branch->setVisible( TRUE );
1431 branch->getParent()->sendChildToFront(branch);
1430 } 1432 }
1431 } 1433 }
1432} 1434}
@@ -2958,6 +2960,7 @@ void LLMenuGL::showPopup(LLView* spawning_view, LLMenuGL* menu, S32 x, S32 y)
2958 } 2960 }
2959 menu->translate( delta_x, delta_y ); 2961 menu->translate( delta_x, delta_y );
2960 menu->setVisible( TRUE ); 2962 menu->setVisible( TRUE );
2963 menu->getParent()->sendChildToFront(menu);
2961} 2964}
2962 2965
2963//----------------------------------------------------------------------------- 2966//-----------------------------------------------------------------------------