Skip to content
Snippets Groups Projects
Commit 27133e3d authored by ¡Cinder! ㊝'s avatar ¡Cinder! ㊝ :speech_balloon:
Browse files

Dogfood for now

parent 050d544a
No related branches found
No related tags found
1 merge request!89Legacy notification well for normal folks who don't like checking their...
...@@ -568,6 +568,14 @@ void LLPanelProfileLegacy::onCommitAction(const LLSD& userdata) ...@@ -568,6 +568,14 @@ void LLPanelProfileLegacy::onCommitAction(const LLSD& userdata)
LLAvatarActions::pay(getAvatarId()); LLAvatarActions::pay(getAvatarId());
else if (action == "report_abuse") else if (action == "report_abuse")
LLFloaterReporter::showFromObject(getAvatarId()); LLFloaterReporter::showFromObject(getAvatarId());
else if (action == "upload_sl")
{
// *TODO:
}
else if (action == "upload_fl")
{
// *TODO:
}
else if (action == "webprofile") else if (action == "webprofile")
ALAvatarActions::showWebProfile(getAvatarId()); ALAvatarActions::showWebProfile(getAvatarId());
else else
...@@ -594,6 +602,11 @@ bool LLPanelProfileLegacy::isActionEnabled(const LLSD& userdata) ...@@ -594,6 +602,11 @@ bool LLPanelProfileLegacy::isActionEnabled(const LLSD& userdata)
action_enabled = (getAvatarId() != gAgentID); action_enabled = (getAvatarId() != gAgentID);
else if (check == "can_drama") else if (check == "can_drama")
action_enabled = (getAvatarId() != gAgentID); action_enabled = (getAvatarId() != gAgentID);
else if (check == "can_upload_pic")
{
action_enabled = getAvatarId() == gAgentID
&& !gAgent.getRegionCapability("UploadAgentProfileImage").empty();
}
else else
LL_INFOS("LegacyProfiles") << "Unhandled check " << check << LL_ENDL; LL_INFOS("LegacyProfiles") << "Unhandled check " << check << LL_ENDL;
return action_enabled; return action_enabled;
......
...@@ -21,6 +21,9 @@ ...@@ -21,6 +21,9 @@
<menu_item_call.on_click <menu_item_call.on_click
function="Profile.Action" function="Profile.Action"
parameter="upload_sl"/> parameter="upload_sl"/>
<menu_item_call.on_enable
function="Profile.Enable"
parameter="can_upload_pic" />
</menu_item_call> </menu_item_call>
<menu_item_call <menu_item_call
label="First Life..." label="First Life..."
...@@ -28,6 +31,9 @@ ...@@ -28,6 +31,9 @@
<menu_item_call.on_click <menu_item_call.on_click
function="Profile.Action" function="Profile.Action"
parameter="upload_fl"/> parameter="upload_fl"/>
<menu_item_call.on_enable
function="Profile.Enable"
parameter="can_upload_pic" />
</menu_item_call> </menu_item_call>
</menu>--> </menu>-->
<menu_item_call <menu_item_call
......
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