Skip to content
Snippets Groups Projects
Commit f42f7130 authored by Oz Linden's avatar Oz Linden
Browse files

merge changes for .v-pb

parents c34ab16e b8b596a5
No related branches found
No related tags found
No related merge requests found
...@@ -1912,9 +1912,20 @@ BOOL LLFolderView::handleDragAndDrop(S32 x, S32 y, MASK mask, BOOL drop, ...@@ -1912,9 +1912,20 @@ BOOL LLFolderView::handleDragAndDrop(S32 x, S32 y, MASK mask, BOOL drop,
// when drop is not handled by child, it should be handled // when drop is not handled by child, it should be handled
// by the folder which is the hierarchy root. // by the folder which is the hierarchy root.
if (!handled && getListener()->getUUID().notNull()) if (!handled)
{ {
LLFolderViewFolder::handleDragAndDrop(x, y, mask, drop, cargo_type, cargo_data, accept, tooltip_msg); if (getListener()->getUUID().notNull())
{
LLFolderViewFolder::handleDragAndDrop(x, y, mask, drop, cargo_type, cargo_data, accept, tooltip_msg);
}
else
{
if (!mFolders.empty())
{
// dispatch to last folder as a hack to support "Contents" folder in object inventory
handled = mFolders.back()->handleDragAndDropFromChild(mask,drop,cargo_type,cargo_data,accept,tooltip_msg);
}
}
} }
if (handled) if (handled)
......
...@@ -568,7 +568,7 @@ void LLLoginInstance::constructAuthParams(LLPointer<LLCredential> user_credentia ...@@ -568,7 +568,7 @@ void LLLoginInstance::constructAuthParams(LLPointer<LLCredential> user_credentia
else else
{ {
requested_options.append("basic-mode"); requested_options.append("basic-mode");
requested_options.append("inventory-basic"); //requested_options.append("inventory-basic");
} }
#endif #endif
......
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