diff options
author | Loren Shih <seraph@lindenlab.com> | 2009-11-04 16:25:13 -0500 |
---|---|---|
committer | Loren Shih <seraph@lindenlab.com> | 2009-11-04 16:25:13 -0500 |
commit | ec9da605c120b9df648eb163dc8647f955275f5f (patch) | |
tree | 8d2595ed68f4183cf87d00a69a829598a9a6d653 /indra/newview/llsidepanelinventory.cpp | |
parent | 7383cfe14bd1522d921b96c6ab0804f888f8c5c0 (diff) |
EXT-2216 : Task properties sidepanel
Subclassing sidepanel item/task info with llsidepanelinventorysubpanel.
Some bug fixing and cleanup.
--HG--
branch : avatar-pipeline
Diffstat (limited to 'indra/newview/llsidepanelinventory.cpp')
-rw-r--r-- | indra/newview/llsidepanelinventory.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llsidepanelinventory.cpp b/indra/newview/llsidepanelinventory.cpp index 9b67bc701d..c4779cd29a 100644 --- a/indra/newview/llsidepanelinventory.cpp +++ b/indra/newview/llsidepanelinventory.cpp @@ -186,7 +186,7 @@ void LLSidepanelInventory::showItemInfoPanel() mInventoryPanel->setVisible(FALSE);
mItemPanel->dirty();
- mItemPanel->setEditMode(FALSE);
+ mItemPanel->setIsEditing(FALSE);
}
void LLSidepanelInventory::showTaskInfoPanel()
@@ -194,6 +194,9 @@ void LLSidepanelInventory::showTaskInfoPanel() mItemPanel->setVisible(FALSE);
mTaskPanel->setVisible(TRUE);
mInventoryPanel->setVisible(FALSE);
+
+ mTaskPanel->dirty();
+ mTaskPanel->setIsEditing(FALSE);
}
void LLSidepanelInventory::showInventoryPanel()
|