summaryrefslogtreecommitdiff
path: root/indra/newview/llpanelface.cpp
diff options
context:
space:
mode:
authorJonathan "Geenz" Goodman <geenz@geenzo.com>2023-08-29 03:04:04 -0700
committerJonathan "Geenz" Goodman <geenz@geenzo.com>2023-08-29 03:04:04 -0700
commitfbecd348f897ee91a5639e7e9fe4f0578d72b8e2 (patch)
tree23fb72ddb17416e1b5750e92383bac2a8b893305 /indra/newview/llpanelface.cpp
parent316052024958dde817a8d0809c77e29ec4cef64c (diff)
Add protocol level mirror support, and UI.
Diffstat (limited to 'indra/newview/llpanelface.cpp')
-rw-r--r--indra/newview/llpanelface.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/indra/newview/llpanelface.cpp b/indra/newview/llpanelface.cpp
index 9233ec6277..25f42e6dae 100644
--- a/indra/newview/llpanelface.cpp
+++ b/indra/newview/llpanelface.cpp
@@ -596,17 +596,6 @@ void LLPanelFace::sendFullbright()
LLSelectMgr::getInstance()->selectionSetFullbright( fullbright );
}
-void LLPanelFace::sendMirror()
-{
- LLCheckBoxCtrl* mCheckMirror = getChild<LLCheckBoxCtrl>("checkbox mirror");
-
- if (!mCheckMirror)
- return;
-
- LLTextureEntry::eRenderableTarget target = mCheckMirror->get() ? LLTextureEntry::RT_MIRROR : LLTextureEntry::RT_DISABLED;
- LLSelectMgr::getInstance()->selectionSetRenderableTarget(target);
-}
-
void LLPanelFace::sendColor()
{
@@ -3007,12 +2996,6 @@ void LLPanelFace::onCommitFullbright(LLUICtrl* ctrl, void* userdata)
self->sendFullbright();
}
-void LLPanelFace::onCommitMirror(LLUICtrl* ctrl, void* userdata)
-{
- LLPanelFace* self = (LLPanelFace*) userdata;
- self->sendMirror();
-}
-
// static
void LLPanelFace::onCommitGlow(LLUICtrl* ctrl, void* userdata)
{