diff options
author | Kent Quirk <q@lindenlab.com> | 2010-09-28 13:20:13 -0400 |
---|---|---|
committer | Kent Quirk <q@lindenlab.com> | 2010-09-28 13:20:13 -0400 |
commit | d9547f5e8074f5997320815e8352c981022cb622 (patch) | |
tree | a01476ef20171863292d071c24bf4f7d7b9ee386 /indra/newview/llstatusbar.cpp | |
parent | 93eb6cac2d89b1f9b3aabb982d6396759fd58bb7 (diff) |
STORM-265 -- remove invisible button on menu bar that was tied to the lag meter.
Diffstat (limited to 'indra/newview/llstatusbar.cpp')
-rw-r--r-- | indra/newview/llstatusbar.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/indra/newview/llstatusbar.cpp b/indra/newview/llstatusbar.cpp index 2c15ff9aed..0cf2b74f9c 100644 --- a/indra/newview/llstatusbar.cpp +++ b/indra/newview/llstatusbar.cpp @@ -213,8 +213,6 @@ BOOL LLStatusBar::postBuild() mSGPacketLoss->mPerSec = FALSE; addChild(mSGPacketLoss); - getChild<LLTextBox>("stat_btn")->setClickedCallback(onClickStatGraph); - mPanelVolumePulldown = new LLPanelVolumePulldown(); addChild(mPanelVolumePulldown); mPanelVolumePulldown->setFollows(FOLLOWS_TOP|FOLLOWS_RIGHT); @@ -506,12 +504,6 @@ void LLStatusBar::onClickMediaToggle(void* data) LLViewerMedia::setAllMediaEnabled(enable); } -// static -void LLStatusBar::onClickStatGraph(void* data) -{ - LLFloaterReg::showInstance("lagmeter"); -} - BOOL can_afford_transaction(S32 cost) { return((cost <= 0)||((gStatusBar) && (gStatusBar->getBalance() >=cost))); |