Skip to content
Snippets Groups Projects
Commit 5de49ccb authored by Arthur Abraham's avatar Arthur Abraham
Browse files

Attempt to revert release r61312 checkin. Whitespace only

parent 5d0cbafc
No related branches found
No related tags found
No related merge requests found
/** /**
* @file llpanelcontents.cpp * @file llpanelcontents.cpp
* @brief Object contents panel in the tools floater. * @brief Object contents panel in the tools floater.
* *
...@@ -81,21 +81,21 @@ LLPanelContents::~LLPanelContents() ...@@ -81,21 +81,21 @@ LLPanelContents::~LLPanelContents()
void LLPanelContents::getState(LLViewerObject *objectp ) void LLPanelContents::getState(LLViewerObject *objectp )
{ {
if( !objectp ) if( !objectp )
{ {
childSetEnabled("button new script",FALSE); childSetEnabled("button new script",FALSE);
//mBtnNewScript->setEnabled( FALSE ); //mBtnNewScript->setEnabled( FALSE );
return; return;
} }
// BUG? Check for all objects being editable? // BUG? Check for all objects being editable?
BOOL editable = gAgent.isGodlike() BOOL editable = gAgent.isGodlike()
|| (objectp->permModify() && objectp->permYouOwner()); || (objectp->permModify() && objectp->permYouOwner());
BOOL all_volume = gSelectMgr->selectionAllPCode( LL_PCODE_VOLUME ); BOOL all_volume = gSelectMgr->selectionAllPCode( LL_PCODE_VOLUME );
// Edit script button - ok if object is editable and there's an // Edit script button - ok if object is editable and there's an
// unambiguous destination for the object. // unambiguous destination for the object.
if( editable && if( editable &&
all_volume && all_volume &&
((gSelectMgr->getSelection()->getRootObjectCount() == 1) ((gSelectMgr->getSelection()->getRootObjectCount() == 1)
|| (gSelectMgr->getSelection()->getObjectCount() == 1))) || (gSelectMgr->getSelection()->getObjectCount() == 1)))
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment