Skip to content
Snippets Groups Projects
Commit b79c4e47 authored by Andrey Kleshchev's avatar Andrey Kleshchev
Browse files

SL-18776 Fix handling for an empty avatar list

parent 8496ae48
No related branches found
No related tags found
2 merge requests!3Update to main branch,!2Rebase onto current main branch
...@@ -680,7 +680,12 @@ void LLFloaterAvatarPicker::processResponse(const LLUUID& query_id, const LLSD& ...@@ -680,7 +680,12 @@ void LLFloaterAvatarPicker::processResponse(const LLUUID& query_id, const LLSD&
// clear "Searching" label on first results // clear "Searching" label on first results
search_results->deleteAllItems(); search_results->deleteAllItems();
if (content.has("agents")) if (content.has("failure_reason"))
{
getChild<LLScrollListCtrl>("SearchResults")->setCommentText(content["failure_reason"].asString());
getChildView("ok_btn")->setEnabled(false);
}
else
{ {
LLSD agents = content["agents"]; LLSD agents = content["agents"];
...@@ -733,10 +738,6 @@ void LLFloaterAvatarPicker::processResponse(const LLUUID& query_id, const LLSD& ...@@ -733,10 +738,6 @@ void LLFloaterAvatarPicker::processResponse(const LLUUID& query_id, const LLSD&
search_results->setFocus(TRUE); search_results->setFocus(TRUE);
} }
} }
else if (content.has("failure_reason"))
{
getChild<LLScrollListCtrl>("SearchResults")->setCommentText(content["failure_reason"].asString());
}
} }
} }
......
...@@ -323,7 +323,6 @@ ...@@ -323,7 +323,6 @@
follows="left|top" follows="left|top"
decimal_digits="0" decimal_digits="0"
increment="1" increment="1"
control_name="Edit Cost"
name="Edit Cost" name="Edit Cost"
label="Price:" label="Price:"
label_width="100" label_width="100"
......
...@@ -1140,7 +1140,6 @@ even though the user gets a free copy. ...@@ -1140,7 +1140,6 @@ even though the user gets a free copy.
decimal_digits="0" decimal_digits="0"
increment="1" increment="1"
left_pad="0" left_pad="0"
control_name="Edit Cost"
name="Edit Cost" name="Edit Cost"
label="L$" label="L$"
label_width="15" label_width="15"
......
...@@ -450,7 +450,6 @@ ...@@ -450,7 +450,6 @@
follows="left|top" follows="left|top"
decimal_digits="0" decimal_digits="0"
increment="1" increment="1"
control_name="Edit Cost"
name="Edit Cost" name="Edit Cost"
label="Price: L$" label="Price: L$"
label_width="75" label_width="75"
......
...@@ -454,7 +454,6 @@ ...@@ -454,7 +454,6 @@
increment="1" increment="1"
top_pad="10" top_pad="10"
left="120" left="120"
control_name="Edit Cost"
name="Edit Cost" name="Edit Cost"
label="Price: L$" label="Price: L$"
label_width="73" label_width="73"
......
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