diff options
author | Loren Shih <seraph@lindenlab.com> | 2010-02-03 21:27:02 -0500 |
---|---|---|
committer | Loren Shih <seraph@lindenlab.com> | 2010-02-03 21:27:02 -0500 |
commit | 13aa8f8faaaefea59531a970bd0b6fe1d947b756 (patch) | |
tree | eed11e430e7ce490be7b92029cfe5250f09272d5 /indra/newview/llinspectobject.cpp | |
parent | 3af25f185c4b28b1d629a10acb938d01a7f56090 (diff) |
EXT-4344 : Object Inspector has "Sorry, not implemented yet"
Added sidetray object inspector code.
Diffstat (limited to 'indra/newview/llinspectobject.cpp')
-rw-r--r-- | indra/newview/llinspectobject.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/indra/newview/llinspectobject.cpp b/indra/newview/llinspectobject.cpp index 1a5795a2ae..91cbbbf430 100644 --- a/indra/newview/llinspectobject.cpp +++ b/indra/newview/llinspectobject.cpp @@ -51,6 +51,7 @@ #include "llmenubutton.h" #include "llresmgr.h" // getMonetaryString #include "llsafehandle.h" +#include "llsidetray.h" #include "lltextbox.h" // for description truncation #include "lltrans.h" #include "llui.h" // positionViewNearMouse() @@ -643,8 +644,9 @@ void LLInspectObject::onClickOpen() void LLInspectObject::onClickMoreInfo() { - // *TODO: Show object info side panel, once that is implemented. - LLNotificationsUtil::add("ClickUnimplemented"); + LLSD key; + key["task"] = "task"; + LLSideTray::getInstance()->showPanel("sidepanel_inventory", key); closeFloater(); } |